        :root {
            --primary: #FF5A5F;
            --secondary: #087E8B;
            --accent: #FFC857;
            --bg-light: #F7F7FF;
            --text-dark: #333333;
            --glass-bg: rgba(255, 255, 255, 0.85);
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(255, 200, 87, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(255, 90, 95, 0.1) 0%, transparent 50%);
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* Header */
        header { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--primary); }

        /* Hero */
        .hero {
            display: flex; flex-wrap: wrap; align-items: center; gap: 40px; padding: 60px 0 100px;
        }
        .hero-text { flex: 1; min-width: 300px; }
        .hero-text h1 { font-family: 'Fredoka One', cursive; font-size: 4rem; margin-bottom: 20px; color: var(--secondary); line-height: 1.1; }
        .hero-text p { font-size: 1.3rem; margin-bottom: 30px; color: #555; }
        .hero-image { flex: 1; min-width: 300px; text-align: center; }
        .hero-image img { width: 100%; max-width: 700px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transform: rotate(2deg); transition: transform 0.3s; }
        .hero-image img:hover { transform: rotate(0deg) scale(1.02); }

        .btn { display: inline-block; padding: 14px 30px; font-weight: 800; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; font-size: 1.1rem; }
        .btn-primary { background-color: var(--primary); color: white; box-shadow: 0 6px 0 #D83A3F, 0 10px 20px rgba(255,90,95,0.4); }
        .btn-primary:active { transform: translateY(6px); box-shadow: 0 0px 0 #D83A3F; }

        /* Section Titles */
        .section-title { text-align: center; font-family: 'Fredoka One', cursive; font-size: 3rem; color: var(--secondary); margin-bottom: 50px; }

        /* Experience Section (Images & Text) */
        .feature-split { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; margin-bottom: 80px; }
        .feature-split.reverse { flex-direction: row-reverse; }
        .feature-split .text { flex: 1; min-width: 300px; }
        .feature-split .text h3 { font-family: 'Fredoka One', cursive; font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; }
        .feature-split .text p { font-size: 1.2rem; color: #666; }
        .feature-split .image { flex: 1; min-width: 300px; text-align: center; }
        .feature-split .image img { width: 100%; max-width: 700px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

        /* Premium Section */
        .premium-banner {
            background: linear-gradient(135deg, var(--accent), #FFA700);
            padding: 60px 40px; border-radius: 30px; text-align: center; margin-bottom: 100px;
            box-shadow: 0 20px 40px rgba(255, 200, 87, 0.3); color: #8C5200;
        }
        .premium-banner h2 { font-family: 'Fredoka One', cursive; font-size: 3.5rem; margin-bottom: 20px; color: white; text-shadow: 2px 2px 0 #D98200; }
        .premium-banner p { font-size: 1.4rem; font-weight: 600; max-width: 800px; margin: 0 auto 30px; }
        .premium-img { width: 100%; max-width: 800px; border-radius: 20px; margin-bottom: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

        /* Small Forms Section */
        .auth-container { background: white; border-radius: 30px; padding: 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); margin-bottom: 100px; display: flex; flex-wrap: wrap; gap: 50px; }
        .auth-box { flex: 1; min-width: 250px; }
        .auth-box h3 { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--secondary); margin-bottom: 10px; }
        .auth-box p { color: #777; margin-bottom: 20px; font-size: 0.95rem; }
        
        .input-group { margin-bottom: 15px; }
        .input-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: #444; }
        .input-group input { width: 100%; padding: 12px; border: 2px solid #E2E8F0; border-radius: 10px; font-family: 'Outfit'; transition: border 0.3s; box-sizing: border-box; }
        .input-group input:focus { border-color: var(--primary); outline: none; }
        
        .btn-form { width: 100%; padding: 12px; font-size: 1.1rem; border-radius: 10px; font-weight: 800; cursor: pointer; border: none; }
        .btn-register { background: var(--secondary); color: white; }
        .btn-login { background: white; border: 2px solid var(--secondary); color: var(--secondary); }

        .alert { padding: 12px; border-radius: 8px; margin-bottom: 15px; font-size: 0.9rem; font-weight: 600; }
        .alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #F87171; }
        .alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #34D399; }
        
        footer { text-align: center; padding: 30px; color: #888; font-weight: 600; border-top: 2px dashed #E2E8F0; }
