* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --candy-red: #FF6B6B;
            --sky-blue: #4ECDC4;
            --sunny-yellow: #FFD93D;
            --soft-pink: #FFB6C1;
            --mint-green: #98FB98;
            --lavender: #E6E6FA;
        }

        body {
            font-family: 'Comic Neue', cursive;
            overflow-x: hidden;
            background: linear-gradient(135deg, var(--sky-blue) 0%, var(--soft-pink) 50%, var(--sunny-yellow) 100%);
            min-height: 100vh;
            position: relative;
        }

        @keyframes wobble {
            0% { transform: translateX(0%); }
            15% { transform: translateX(-25px) rotate(-5deg); }
            30% { transform: translateX(20px) rotate(3deg); }
            45% { transform: translateX(-15px) rotate(-3deg); }
            60% { transform: translateX(10px) rotate(2deg); }
            75% { transform: translateX(-5px) rotate(-1deg); }
            100% { transform: translateX(0%); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Navigation */
        /* Navbar Base */
.navbar {
  width: 100%;
  background: linear-gradient(90deg, #60a5fa, #f9a8d4, #fde68a); /* light blue → light pink → soft yellow */
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 5px 0;
}

/* Hover Gradient Underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #f9a8d4, #fde68a);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #60a5fa, #f9a8d4, #fde68a);
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Scale Now Navigation Button */
.scale-nav-btn {
    background: linear-gradient(45deg, #60a5fa, #fde68a) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3) !important;
    display: inline-block !important;
}

.scale-nav-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4) !important;
}

.scale-nav-btn::after {
    display: none !important;
}

/* User Info Display */
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--candy-red), var(--sunny-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.logout-btn {
    background: linear-gradient(45deg, #ff4757, #ff3838) !important;
    color: #ffffff;
    border: none !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3) !important;
}

.logout-btn:hover {
    background: linear-gradient(45deg, #ff3838, #ff2d2d) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4) !important;
}
        /* Main Content */
        .main-content {
            margin-top: 10px;
            padding: 2rem;
            position: relative;
            z-index: 2;
            min-height: calc(100vh - 200px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-section {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s linear infinite;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--candy-red), var(--sky-blue), var(--sunny-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--candy-red), var(--sunny-yellow));
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Section Cards */
        .section-card {
            margin-top: 3rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 71, 87, 0.1), transparent);
            animation: rotate 20s linear infinite;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .section-card:hover::before {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-icon {
            font-size: 3rem;
            margin-right: 1rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--candy-red);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .section-content {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* How It Works Steps */
       .steps-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0;
  
        }
        .steps-container > * {
            flex: 1 1 250px;         
        }
        
        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .login-btn {
            padding: 8px 15px;
            background: transparent;
            border: 1px solid #ff6b6b;
            color: #ff6b6b;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 500;
        }
        
        .login-btn:hover {
            background-color: #ff6b6b;
            color: white;
        }
        
        .signup-btn {
            padding: 8px 15px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 500;
        }
        
        .signup-btn:hover {
            background-color: #ff5252;
        }
        
        .step-card {
            background: linear-gradient(135deg, rgba(112, 161, 255, 0.1), rgba(255, 165, 2, 0.1));
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--sky-blue), var(--sunny-yellow), var(--candy-red));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .step-card:hover::before {
            opacity: 1;
        }

        .step-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(112, 161, 255, 0.2);
        }

        .step-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--sky-blue);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .step-description {
            color: #666;
            font-size: 1rem;
        }

            .section-card {
                padding: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

        /* Decorative Elements */
        .baking-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .baking-icon {
            position: absolute;
            font-size: 3rem;
            color: var(--candy-red);
            opacity: 0.3;
            animation: wobble 4s ease-in-out infinite;
        }

        .icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
        .icon-2 { top: 20%; right: 15%; animation-delay: 1s; }
        .icon-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
        .icon-4 { bottom: 20%; right: 10%; animation-delay: 3s; }

        /* Features Preview */
        .features-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1000px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--sky-blue);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card:nth-child(1) .feature-icon { color: var(--candy-red); }
        .feature-card:nth-child(2) .feature-icon { color: var(--sky-blue); }
        .feature-card:nth-child(3) .feature-icon { color: var(--sunny-yellow); }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .feature-desc {
            color: #666;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2rem;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-text {
            color: #666;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, var(--candy-red), var(--sky-blue));
            color: white;
            text-decoration: none;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            animation: wobble 0.5s ease-in-out;
        }

        .social-link.linkedin {
            background: linear-gradient(45deg, #0077B5, #00A0DC);
        }

        .social-link.portfolio {
            background: linear-gradient(45deg, var(--sunny-yellow), var(--candy-red));
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: start;
                padding-top: 2rem;
                gap: 1rem;
                transition: left 0.3s ease;
                display: flex;
            }

            .nav-links.active {
                left: 0;
            }


            .hero-title {
                font-size: 2.5rem;
            }

            .hero-section {
                padding: 2rem;
                margin: 1rem;
            }

            .features-preview {
                grid-template-columns: 1fr;
                margin-top: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .cta-button {
                font-size: 1rem;
                padding: 0.8rem 2rem;
            }
        }

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer h2 {
    color: #ff7f50;
}

.footer h3 {
    margin-bottom: 10px;
    color: #ff7f50;
}

.footer p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ff7f50;
}

.footer-newsletter input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.footer-newsletter button {
    background-color: #ff7f50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background-color: #ff956b;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* Specific brand colors */
.social-icon.linkedin { background: #0077b5; }
.social-icon.github   { background: #6e5494; }
.social-icon.twitter  { background: #1da1f2; }
.social-icon.email    { background: #ff8800; }

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
