/* ===================================
   POOKIES.IN - CUSTOM STYLES
   Primary Color: #00796B (Deep Teal)
   Design: Gen-Z Meme-Friendly Aesthetic
   =================================== */

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-color: #00796B;
    --primary-dark: #004D40;
    --primary-light: #4DB6AC;
    --accent-pink: #FF6B9D;
    --accent-purple: #9C27B0;
    --accent-orange: #FFA726;
    --gradient-1: linear-gradient(135deg, #00796B 0%, #004D40 100%);
    --gradient-2: linear-gradient(135deg, #FF6B9D 0%, #9C27B0 100%);
    --gradient-3: linear-gradient(135deg, #00796B 0%, #4DB6AC 100%);
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #757575;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

.section-title {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   NAVIGATION
   =================================== */

.brand-icon {
    width: 50px;
    height: 50px;
}
   
.navbar {
    background: rgba(0, 121, 107, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(0, 121, 107, 1);
    box-shadow: var(--shadow-md);
}

.logo-brand {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    color: white !important;
    transition: transform 0.3s ease;
}

.logo-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::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 ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

:root {
    --gradient-romantic: linear-gradient(135deg, #FF6B9D 0%, #C837AB 50%, #FF416C 100%);
    --gradient-hover: linear-gradient(135deg, #FF5A8D 0%, #B827AB 50%, #FF315C 100%);
    --glow-color: rgba(255, 107, 157, 0.6);
}

.btn-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-romantic);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4),
                0 0 40px rgba(255, 107, 157, 0.15);
    overflow: hidden;
    cursor: pointer;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Animated glow effect */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4),
                    0 0 40px rgba(255, 107, 157, 0.15);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 107, 157, 0.6),
                    0 0 60px rgba(255, 107, 157, 0.3);
    }
}

/* Icon styling */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Content wrapper */
.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.btn-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.2px;
}

/* Animated shine effect */
.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* Hover effects */
.btn-download:hover {
    transform: translateY(-5px) scale(1.03);
    background: var(--gradient-hover);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6),
                0 0 60px rgba(255, 107, 157, 0.4);
}

.btn-download:hover .btn-icon {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Active/Click effect */
.btn-download:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
}

/* Floating hearts animation (optional decorative element) */
.btn-download::after {
    content: '💕';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    animation: float-hearts 3s ease-in-out infinite;
}

@keyframes float-hearts {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-15px) scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .btn-download {
        padding: 1rem 2rem;
        gap: 0.75rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .btn-label {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.75rem;
    }
}


.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.btn-outline-light{
    margin-left:20px
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #00796B 0%, #004D40 50%, #00251A 100%);
    color: white;
    overflow: hidden;
    padding-top: 110px;

}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: 'Bungee', cursive;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #FF6B9D, #FFA726, #4DB6AC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.phone-mockup {
    position: relative;
    text-align: center;
}

.floating-phone {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    margin-bottom: 250px;
    border-radius: 30px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
    /* animation: float 6s ease-in-out infinite; */
    max-width: 60%;
    /* height: auto; */
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(77, 182, 172, 0.4) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* ===================================
   MEME ZONE / COMMUNITY SECTION
   =================================== */
.meme-zone {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.meme-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    height: 100%;
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.meme-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.meme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meme-card:hover .meme-image img {
    transform: scale(1.1) rotate(2deg);
}

.meme-caption {
    padding: 1.5rem;
}

.meme-caption h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.meme-caption p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   SCREENSHOT SLIDER
   =================================== */
.screenshot-slider {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.screenshot-img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.carousel-item.active .screenshot-img {
    animation: slideInScale 0.6s ease;
}

@keyframes slideInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.carousel-caption-custom {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.carousel-caption-custom h5 {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.carousel-caption-custom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
}

.carousel-indicators button {
    background-color: var(--primary-color);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 121, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #e9ecef 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-light);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #FFC107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
}

.testimonial-author h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-author p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* ========================================
   SAFETY SECTION
   ======================================== */
.safety-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.safety-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.safety-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.safety-list strong {
    color: var(--text-dark);
}

.safety-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.safety-illustration i {
    font-size: 300px;
    color: var(--primary-color);
    opacity: 0.1;
}


/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-feature-item i {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    background-color: var(--white);
    padding: 100px 0;
}

.step-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
}



/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-logo {
    font-family: 'Bungee', cursive;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-5px);
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright,
.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   MOBILE FIXED CTA
   =================================== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .phone-mockup {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .meme-caption h4 {
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-gradient-primary {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}
