/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.nav-logo .logo-img {
    height: 3rem;
    width: auto;
    margin-right: 0.8rem;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #333;
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 234, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.9s both;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile-First Stats Layout */
@media only screen and (max-width: 900px) {
    .hero-stats {
        display: block !important;
        text-align: center !important;
    }
    
    .stat-card {
        display: block !important;
        width: 90% !important;
        max-width: 280px !important;
        margin: 0 auto 1.5rem auto !important;
        float: none !important;
    }
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 180px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0) perspective(1000px) rotateX(0deg);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 50%, 
        rgba(240, 147, 251, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 24px;
}

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

.stat-card:hover {
    transform: translateY(-20px) scale(1.05) perspective(1000px) rotateX(5deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 35px 80px rgba(31, 38, 135, 0.5),
        0 15px 40px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 0.9;
    animation: counterUp 2s ease-out, gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.coin {
    position: absolute;
    color: #ffeaa7;
    font-size: 2rem;
    animation: floatCoin 4s ease-in-out infinite;
}

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

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.quiz-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: bubble 3s ease-in-out infinite;
}

.quiz-1 { top: 10%; right: 10%; animation-delay: 0.5s; }
.quiz-2 { bottom: 20%; right: 40%; animation-delay: 1.5s; }

@keyframes bubble {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-phone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(-10px); }
}

.phone-screen {
    background: white;
    border-radius: 20px;
    padding: 20px;
    min-height: 400px;
}

.quiz-interface {
    text-align: center;
}

.question-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.question-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.option {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.option.correct {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.coins-earned {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #333;
    padding: 10px;
    border-radius: 20px;
    font-weight: 600;
    animation: coinEarn 1s ease-out;
}

@keyframes coinEarn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-feature i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.2rem;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.about-feature p {
    color: #666;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.stat-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Rewards Section */
.rewards {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.rewards .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.reward-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.reward-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffeaa7;
}

.reward-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reward-coins {
    color: #ffeaa7;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-feature i {
    color: #28a745;
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #555;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1rem;
}

.phone-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: phoneFloat 6s ease-in-out infinite;
}

.app-interface {
    background: white;
    border-radius: 20px;
    padding: 20px;
    min-height: 300px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.app-header h3 {
    color: #333;
    font-size: 1.2rem;
}

.user-coins {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.category {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category:hover {
    border-color: #667eea;
    background: #e8f0fe;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    margin-right: 0.8rem;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Universal Mobile Override */
@media screen and (max-width: 900px), screen and (max-device-width: 900px) {
    /* Force all containers to mobile layout */
    .hero-stats, .about-stats, .stat-grid, .stats-grid {
        display: block !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 2rem auto !important;
        padding: 0 15px !important;
        gap: 0 !important;
        text-align: center !important;
    }
    
    /* Force all stat cards to vertical */
    .stat-card, .stat-item {
        width: calc(100% - 30px) !important;
        max-width: 300px !important;
        margin: 0 auto 1.5rem auto !important;
        padding: 2rem 1.5rem !important;
        flex: none !important;
        display: block !important;
        border-radius: 16px !important;
        float: none !important;
        clear: both !important;
        position: static !important;
        transform: none !important;
        box-sizing: border-box !important;
    }
    
    .stat-card:last-child, .stat-item:last-child {
        margin-bottom: 0 !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        display: block !important;
    }
    
    /* Force all hero sections to single column */
    .hero, .about-hero, .contact-hero, .help-hero, .privacy-hero, .terms-hero {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
    }
    
    .hero-content, .about-hero-content, .contact-hero-content, .help-hero-content {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 3rem 20px 2rem 20px !important;
        gap: 2rem !important;
        max-width: 100% !important;
        margin: 20px auto 0 auto !important;
    }
    
    /* Force all text content to be mobile-friendly */
    .hero-title, .about-hero-title, .contact-hero-title, .help-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        text-align: center !important;
    }
    
    .hero-subtitle, .about-hero-desc, .contact-hero-desc, .help-hero-desc {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* About Page Mobile Fixes */
    .about-hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 3rem 20px 2rem 20px !important;
        gap: 2rem !important;
        max-width: 100% !important;
        margin: 20px auto 0 auto !important;
    }
    
    .about-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-hero-desc {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
    }
    
    .about-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .stat-item {
        width: 100% !important;
        max-width: 200px !important;
        text-align: center !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Contact Page Mobile Fixes */
    .contact-hero-content {
        padding: 2rem 15px !important;
        text-align: center !important;
    }
    
    .contact-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-hero-desc {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .contact-info {
        padding: 0 15px !important;
        text-align: center !important;
    }
    
    .contact-form-container {
        padding: 0 15px !important;
    }
    
    /* Help Page Mobile Fixes */
    .help-hero-content {
        padding: 2rem 15px !important;
        text-align: center !important;
    }
    
    .help-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .help-hero-desc {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
    }
    
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Privacy & Terms Page Mobile Fixes */
    .privacy-hero-content, .terms-hero-content {
        padding: 2rem 15px !important;
        text-align: center !important;
    }
    
    .privacy-hero-title, .terms-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
    }
    
    .privacy-hero-desc, .terms-hero-desc {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
    }
    
    .privacy-content, .terms-content {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    .privacy-content h2, .terms-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .privacy-content h3, .terms-content h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .privacy-content p, .terms-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: justify !important;
    }
    
    .privacy-content ul, .terms-content ul {
        padding-left: 20px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .privacy-content li, .terms-content li {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.5rem !important;
        word-wrap: break-word !important;
    }
    
    /* Form Elements Mobile Fixes */
    .contact-form {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .form-group label {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem !important;
        padding: 0.8rem !important;
        width: 100% !important;
        border-radius: 8px !important;
    }
    
    /* Button Mobile Fixes */
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: auto !important;
        min-width: 150px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    /* Navigation Mobile Fixes */
    .nav-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 1rem 0 !important;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    /* Footer Mobile Fixes */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        padding: 0 15px !important;
    }
    
    .footer-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Universal Grid Mobile Override */
    .features-grid, .rewards-grid, .categories-grid, .contact-grid, .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Universal Card Mobile Override */
    .feature-card, .reward-card, .category-card {
        padding: 2rem 1.5rem !important;
        margin: 0 auto 1.5rem auto !important;
        max-width: 350px !important;
        text-align: center !important;
    }
    
    /* Universal Section Mobile Override */
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
        padding: 0 15px !important;
        word-wrap: break-word !important;
    }
    
    /* Universal Content Mobile Override */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    /* Universal Text Mobile Override */
    h1 { font-size: 2.5rem !important; line-height: 1.2 !important; }
    h2 { font-size: 2rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.5rem !important; line-height: 1.3 !important; }
    h4 { font-size: 1.2rem !important; line-height: 1.3 !important; }
    p { font-size: 1rem !important; line-height: 1.6 !important; word-wrap: break-word !important; }
}

/* Premium Our Story Section Styles */
.premium-story {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.story-waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: wave 8s linear infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 2s; opacity: 0.7; }
.wave-3 { animation-delay: 4s; opacity: 0.5; }

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.story-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.highlight-text {
    background: linear-gradient(135deg, #00F5FF, #0080FF, #4169E1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite reverse;
}

.story-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.story-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

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

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.story-card-2 {
    flex-direction: row-reverse;
}

.story-icon {
    flex-shrink: 0;
}

.icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.story-text strong {
    color: #FFD700;
    font-weight: 700;
}

.story-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.story-stat {
    text-align: center;
    color: white;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    animation: rotate 10s linear infinite;
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-circle .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-stat .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Animations */

@keyframes wave {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

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

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

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

/* Premium Story Mobile Fixes */
@media screen and (max-width: 768px) {
    .premium-story {
        padding: 4rem 0 !important;
    }
    
    .story-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .story-subtitle {
        font-size: 1.1rem !important;
        padding: 0 15px !important;
    }
    
    .story-content {
        gap: 2rem !important;
        padding: 0 15px !important;
    }
    
    .story-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    .story-card-2 {
        flex-direction: column !important;
    }
    
    .story-text h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .story-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .story-stats {
        gap: 2rem !important;
        padding: 0 15px !important;
    }
    
    .stat-circle {
        width: 100px !important;
        height: 100px !important;
    }
    
    .stat-circle .stat-number {
        font-size: 1.3rem !important;
    }
    
}

/* Universal Mobile Override for Statistics and Cards */
@media screen and (max-width: 768px), screen and (max-device-width: 768px) {
    .hero-stats, .about-stats, .stat-grid, .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
    
    .stat-card, .stat-item {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
        min-height: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .stat-card h3, .stat-item h3 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.8rem !important;
        word-wrap: break-word !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .stat-card p, .stat-item p {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
        font-weight: 600 !important;
    }
    
    .about-description {
        text-align: justify !important;
        padding: 0 10px !important;
    }
}

/* Additional Mobile Fixes for Specific Elements */
@media screen and (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
        padding: 2rem 0 !important;
    }
    
    .about-text {
        padding: 0 20px !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .about-text h2 {
        font-size: 2.2rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .about-text p {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    }
    
    .download-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
        padding: 2rem 0 !important;
    }
    
    .download-text {
        padding: 0 20px !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .download-text h2 {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .download-text p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
    }
    
    .navbar {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        display: none;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 2rem;
        width: 100% !important;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
        flex-wrap: nowrap !important;
    }
    
    .stat-card {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
        min-width: auto !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 16px !important;
        backdrop-filter: blur(15px) !important;
        transform: none !important;
        flex: none !important;
        display: block !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reward-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .download-text {
        padding: 0 15px !important;
        text-align: center !important;
    }
    
    .about-text {
        padding: 0 15px !important;
        text-align: center !important;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .page-hero {
        min-height: 50vh;
        padding: 0 15px;
    }
    
    .page-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-icon {
        left: -2rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    .hero, .about-hero, .contact-hero, .help-hero, .privacy-hero, .terms-hero {
        padding: 140px 0 80px !important;
        min-height: auto !important;
    }
    
    .hero-content, .about-hero-content, .contact-hero-content, .help-hero-content, .privacy-hero-content, .terms-hero-content {
        padding: 2rem 20px !important;
        margin-top: 0 !important;
        text-align: center !important;
    }
    
    .hero-title, .about-hero-title, .contact-hero-title, .help-hero-title, .privacy-hero-title, .terms-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
    }
    
    .hero-subtitle, .about-hero-subtitle, .contact-hero-subtitle, .help-hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word !important;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 20px !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-card {
        padding: 2.5rem 1.5rem !important;
        margin: 0 !important;
        min-width: auto !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 16px !important;
        backdrop-filter: blur(15px) !important;
        transform: none !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        min-height: 140px !important;
        box-sizing: border-box !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        width: auto !important;
        display: block !important;
        font-weight: 800 !important;
    }
    
    .stat-label {
        font-size: 0.95rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        word-wrap: break-word !important;
    }
    
    .feature-card, .reward-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon, .reward-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .download-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }
    
    .page-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo .logo-img {
        height: 2.2rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Page Hero Styles */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero .hero-content {
    color: white;
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #667eea;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* About Detailed Styles */
.about-detailed {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}
