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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    background: 
        url('overlay2.png') center center / cover no-repeat,
        linear-gradient(135deg, 
            rgba(103, 58, 183, 0.95) 0%,        
            rgba(46, 204, 113, 0.95) 25%,       
            rgba(233, 30, 99, 0.95) 50%,        
            rgba(255, 152, 0, 0.95) 75%,        
            rgba(103, 58, 183, 0.95) 100%);     
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover, 100% 100%;
    backdrop-filter: blur(20px);
    min-height: 100vh;
}

/* Ensure background covers full document height */
html {
    background: 
        url('overlay2.png') center center / cover no-repeat,
        linear-gradient(135deg, 
            rgba(103, 58, 183, 0.95) 0%,        
            rgba(46, 204, 113, 0.95) 25%,       
            rgba(233, 30, 99, 0.95) 50%,        
            rgba(255, 152, 0, 0.95) 75%,        
            rgba(103, 58, 183, 0.95) 100%);     
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover, 100% 100%;
    backdrop-filter: blur(20px);
    min-height: 100%;
}

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

/* Full Section Backgrounds with Wave Separators */
.hero {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 100vh;
    padding: 180px 0 120px 0;
}

.products {
    width: 100%;
    min-height: auto;
    position: relative;
    margin-top: -100px;
    padding: 150px 0 80px 0;
}

.about {
    width: 100%;
    min-height: auto;
    position: relative;
    margin-top: -100px;
    padding: 150px 0 80px 0;
}

.contact {
    width: 100%;
    min-height: auto;
    position: relative;
    margin-top: -100px;
    padding: 150px 0 80px 0;
}

.footer {
    width: 100%;
    min-height: auto;
    position: relative;
    margin-top: -100px;
    padding: 150px 0 50px 0;
}

/* UFO Hamburger Menu - Alien Style */
.hamburger-menu {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
}

.can-lid {
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    overflow: visible;
}

.can-lid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(ellipse at center, 
            rgba(46, 204, 113, 0.3) 0%,
            rgba(233, 30, 99, 0.3) 25%,
            rgba(255, 152, 0, 0.3) 50%,
            rgba(103, 58, 183, 0.3) 75%,
            transparent 100%);
    border-radius: 50%;
    opacity: 1;
}



.can-lid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: 
        url('overlay2.png') center center / cover no-repeat,
        linear-gradient(135deg, 
            rgba(103, 58, 183, 0.95) 0%,        
            rgba(46, 204, 113, 0.95) 25%,       
            rgba(233, 30, 99, 0.95) 50%,        
            rgba(255, 152, 0, 0.95) 75%,        
            rgba(103, 58, 183, 0.95) 100%);     
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover, 100% 100%;
    backdrop-filter: blur(20px);
    padding: 30px 30px 30px 30px;
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    right: 0;
}

/* Prevent body scroll when menu is active */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}



.mobile-nav::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: 
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 30%),
        repeating-radial-gradient(circle at center,
            transparent 0px,
            rgba(46, 204, 113, 0.1) 20px,
            transparent 40px);
    border-radius: 50%;
    animation: alienHologram 4s ease-in-out infinite;
    pointer-events: none;
}

.nav-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 40px;
    justify-content: center;
    position: relative;
}

.close-indicator {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    animation: fadeInOut 2s ease-in-out infinite;
    letter-spacing: 1px;
}



.nav-header h2 {
    color: #fff;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(46, 204, 113, 0.5),
        0 0 30px rgba(233, 30, 99, 0.3);
    animation: alienTitle 3s ease-in-out infinite;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    margin-bottom: 0;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInAlien 0.6s ease-out forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.2s; }
.nav-menu li:nth-child(2) { animation-delay: 0.4s; }
.nav-menu li:nth-child(3) { animation-delay: 0.6s; }

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    display: block;
    padding: 25px 40px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(45deg,
            rgba(46, 204, 113, 0.2) 0%,
            rgba(233, 30, 99, 0.2) 25%,
            rgba(255, 152, 0, 0.2) 50%,
            rgba(103, 58, 183, 0.2) 75%,
            rgba(46, 204, 113, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 200px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg,
            transparent,
            rgba(255, 215, 0, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #FFD700;
    background: 
        linear-gradient(45deg,
            rgba(46, 204, 113, 0.6) 0%,
            rgba(233, 30, 99, 0.6) 25%,
            rgba(255, 152, 0, 0.6) 50%,
            rgba(103, 58, 183, 0.6) 75%,
            rgba(46, 204, 113, 0.6) 100%);
    transform: scale(1.1) translateY(-10px);
    box-shadow: 
        0 15px 30px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.8);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 100vh;
    padding: 180px 0 120px 0;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    justify-content: center;
    gap: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.brand-logo {
    display: block;
    width: 60vw;
    max-width: 250px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}

.tagline {
    display: block;
    font-size: 1.8rem;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.8rem;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
}

.stat-label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 3px;
}

.age-warning .stat-number {
    color: #fff;
    background: #ff4757;
    padding: 5px 10px;
    border-radius: 8px;
    border: 2px solid #fff;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: #fff;
    border: none;
    padding: 20px 45px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3),
                0 4px 15px rgba(255, 165, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

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

.cta-button::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.cta-button:active {
    transform: translateY(-6px) scale(1.05);
    transition: all 0.1s ease;
}





/* Wave Section Separators - Removed for unified background */



/* Products Section */
.products {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: visible;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Custom fonts for each flavor */
.bull-berry .product-header h3 {
    font-family: 'Orbitron', monospace; /* High tide geometric alternative */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fizzy-cherry .product-header h3 {
    font-family: 'Space Mono', monospace; /* SCR-N Seven alternative */
    letter-spacing: 1px;
    font-weight: 700;
}

.mad-mango .product-header h3 {
    font-family: 'Bungee Inline', cursive; /* Ambiquity Inline alternative */
    letter-spacing: 1px;
}

.apple-drip .product-header h3 {
    font-family: 'Righteous', cursive; /* TC October alternative */
    letter-spacing: 1px;
}

.flavor-tag {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-visual {
    position: relative;
    height: 150px;
    margin-bottom: 20px;
}

.lightning-icon {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.product-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    border-radius: 10px;
}

.product-info {
    color: #fff;
}

.product-description {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.product-details {
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Product Card Colors */
.apple-drip {
    background: #2ecc71;
}

.apple-drip .product-visual {
    position: relative;
    height: 360px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.apple-drip .mockup-iframe {
    width: 110%;
    max-width: 825px;
    height: 600px;
    border: none !important;
    outline: none !important;
    border-radius: 10px;
    box-shadow: none !important;
    background: transparent;
    margin-top: -96px;
    margin-bottom: -96px;
    margin-left: -5%;
    margin-right: -5%;
}

.fizzy-cherry {
    background: #e91e63;
}

.fizzy-cherry .product-visual {
    position: relative;
    height: 360px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.fizzy-cherry .mockup-iframe {
    width: 110%;
    max-width: 825px;
    height: 600px;
    border: none !important;
    outline: none !important;
    border-radius: 10px;
    box-shadow: none !important;
    background: transparent;
    margin-top: -96px;
    margin-bottom: -96px;
    margin-left: -5%;
    margin-right: -5%;
}

.mad-mango {
    background: #ff9800;
}

.mad-mango .product-visual {
    position: relative;
    height: 360px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.mad-mango .mockup-iframe {
    width: 110%;
    max-width: 825px;
    height: 600px;
    border: none !important;
    outline: none !important;
    border-radius: 10px;
    box-shadow: none !important;
    background: transparent;
    margin-top: -96px;
    margin-bottom: -96px;
    margin-left: -5%;
    margin-right: -5%;
}

.bull-berry {
    background: #673ab7;
}

.bull-berry .product-visual {
    position: relative;
    height: 360px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.bull-berry .mockup-iframe {
    width: 110%;
    max-width: 825px;
    height: 600px;
    border: none !important;
    outline: none !important;
    border-radius: 10px;
    box-shadow: none !important;
    background: transparent;
    margin-top: -96px;
    margin-bottom: -96px;
    margin-left: -5%;
    margin-right: -5%;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
    color: #fff;
    position: relative;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFD700;
}

.about p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.warning-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 71, 87, 0.2);
    padding: 18px 30px;
    border-radius: 30px;
    border: 2px solid #ff4757;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.warning-item .icon {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact-item p {
    color: #fff;
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: transparent;
    color: #fff;
    padding: 50px 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-warning {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .brand-logo {
        width: 60vw;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 150px 0;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 120px;
    }

    .hero-content {
        padding: 0 20px;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 20px;
    }

    .brand-logo {
        width: 50vw;
        max-width: 200px;
        margin: 0 auto 1.5rem auto;
    }

    .hamburger-menu {
        top: 30px;
        right: 30px;
    }

    .can-lid {
        width: 100px;
        height: 100px;
    }

    .mobile-nav {
        padding: 20px 20px 20px 20px;
    }

    .nav-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }



    .nav-menu a {
        font-size: 1.4rem;
        padding: 20px 30px;
        min-width: 180px;
    }

    .brand-name {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 3rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        letter-spacing: 1.2px;
        margin-top: 1rem;
    }

    .cta-button:hover {
        padding-right: 60px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.2;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .warning-info {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-warning {
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    height: 100%;
}

/* Additional mobile viewport fixes */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 120px 0;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 15px;
        gap: 1rem;
        margin-top: 30px;
    }

    .brand-logo {
        width: 55vw;
        max-width: 180px;
        margin: 0 auto 1rem auto;
    }

    .hamburger-menu {
        top: 20px;
        right: 20px;
    }

    .can-lid {
        width: 90px;
        height: 90px;
    }

    .nav-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }



    .nav-menu a {
        font-size: 1.2rem;
        padding: 18px 25px;
        min-width: 160px;
    }

    /* Fix background on mobile devices */
    html, body {
        background-attachment: scroll !important;
        background-size: cover, 100% 100% !important;
        background-position: center center, 0% 0% !important;
        background-repeat: no-repeat, no-repeat !important;
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important;
    }
    
    /* Ensure full gradient coverage on mobile */
    body {
        background: 
            url('overlay2.png') center center / cover no-repeat,
            linear-gradient(135deg, 
                rgba(103, 58, 183, 0.95) 0%,        
                rgba(46, 204, 113, 0.95) 25%,       
                rgba(233, 30, 99, 0.95) 50%,        
                rgba(255, 152, 0, 0.95) 75%,        
                rgba(103, 58, 183, 0.95) 100%) !important;     
        background-attachment: fixed !important;
        background-repeat: no-repeat !important;
        background-size: cover, 100% 100% !important;
        backdrop-filter: blur(20px) !important;
    }
    
    html {
        background: 
            url('overlay2.png') center center / cover no-repeat,
            linear-gradient(135deg, 
                rgba(103, 58, 183, 0.95) 0%,        
                rgba(46, 204, 113, 0.95) 25%,       
                rgba(233, 30, 99, 0.95) 50%,        
                rgba(255, 152, 0, 0.95) 75%,        
                rgba(103, 58, 183, 0.95) 100%) !important;     
        background-attachment: fixed !important;
        background-repeat: no-repeat !important;
        background-size: cover, 100% 100% !important;
        backdrop-filter: blur(20px) !important;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-stats {
        gap: 8px;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

/* UFO and Alien Animations */
@keyframes ufoGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(46, 204, 113, 0.4);
    }
}

@keyframes ufoSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes alienPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes ufoLanding {
    0% {
        transform: translateY(-100vh) scale(0.5) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.1) rotate(-90deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes scanlines {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes alienHologram {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 71, 87, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 71, 87, 0.8),
            0 0 60px rgba(255, 71, 87, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes alienTitle {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(46, 204, 113, 0.5),
            0 0 30px rgba(233, 30, 99, 0.3);
    }
    33% {
        text-shadow: 
            0 0 15px rgba(46, 204, 113, 0.8),
            0 0 25px rgba(233, 30, 99, 0.5),
            0 0 35px rgba(255, 152, 0, 0.3);
    }
    66% {
        text-shadow: 
            0 0 15px rgba(233, 30, 99, 0.8),
            0 0 25px rgba(255, 152, 0, 0.5),
            0 0 35px rgba(103, 58, 183, 0.3);
    }
}

@keyframes slideInAlien {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .stat {
        padding: 12px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 20px 45px;
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 70vw;
        max-width: 250px;
    }

    .tagline {
        font-size: 1.4rem;
    }

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

    .hero {
        padding: 140px 0 80px 0;
    }

    .hero-stats {
        gap: 12px;
        flex-wrap: wrap;
    }

    .stat {
        padding: 10px 14px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.3;
    }

    .about h2, .contact h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        line-height: 1.3;
    }

    .about p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .product-header h3 {
        font-size: 1.6rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .flavor-tag {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}