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

/* Loading Animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    backface-visibility: hidden;
}

body.loaded {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    gap: 0.5rem;
}

.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translate3d(0, -1px, 0);
}

.btn-outline {
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #64748b;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn-outline:hover {
    background: #f1f5f9;
    color: #334155;
}

.btn-lg {
    padding: 0.75rem 2rem;
    height: 3rem;
    font-size: 1rem;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #3b82f6;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
}

.mobile-nav-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
}

.mobile-nav-actions .btn {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-content {
    padding: 1.5rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0.9;
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.trophy-icon {
    color: #10b981;
}

.zap-icon {
    color: #3b82f6;
}

.shield-icon {
    color: #8b5cf6;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #64748b;
}

/* Hero section feature descriptions - white color */
.hero .feature-description {
    color: #ffffff;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(59, 130, 246, 0.2);
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(6, 182, 212, 0.2);
    animation-delay: 1s;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

/* Promotions section title - white color */
.promotions .section-title {
    color: #ffffff;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-item-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.green-icon {
    color: #10b981;
}

.purple-icon {
    color: #8b5cf6;
}

.blue-icon {
    color: #3b82f6;
}

.orange-icon {
    color: #f97316;
}

.pink-icon {
    color: #ec4899;
}

.red-icon {
    color: #ef4444;
}

.feature-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-item-description {
    color: #64748b;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.stats-description {
    color: #64748b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.stat-card-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    color: #64748b;
}

/* Sports Section */
.sports {
    padding: 5rem 0;
    background: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sport-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sport-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sport-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.sport-item-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-item-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.sky-icon {
    color: #0ea5e9;
}

.yellow-icon {
    color: #eab308;
}

.sport-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

.sport-item-events {
    color: #64748b;
    font-size: 0.875rem;
}

.sport-item-content {
    padding: 0 1.5rem 1.5rem;
}

.sport-item-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}


/* Promotions Section */
.promotions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }
    
    .promotion-card {
        height: 100%;
    }
}

.promotion-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promotion-card-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promotion-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.green-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.orange-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.promotion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.promotion-description {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.promotion-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.promotion-card-content .btn {
    margin-top: auto;
}

.special-offer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
}

.special-offer-content {
    padding: 2rem;
    text-align: center;
}

.special-offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.clock-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.limited-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.special-offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.special-offer-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.special-offer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .special-offer-actions {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: white;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.support-icon {
    width: 1rem;
    height: 1rem;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.green-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blue-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-bottom-link:hover {
    color: white;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\\:flex {
        display: flex;
    }
    
    .md\\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mirror Section */
.mirror {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mirror-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mirror-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mirror-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mirror-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mirror-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mirror-card-content {
    padding: 1.5rem;
    text-align: center;
}

.mirror-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mirror-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.mirror-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.mirror-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.mirror-url {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #3b82f6;
    background: #f1f5f9;
    padding: 0.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.mirror-info {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mirror-info-content {
    text-align: center;
}

.mirror-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .mirror-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mirror-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.mirror-info-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.mirror-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.mirror-info-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Auth Section */
.auth {
    padding: 5rem 0;
    background: white;
}

.auth-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .auth-content {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.auth-card-header {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.auth-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.auth-card-description {
    color: #64748b;
    font-size: 0.875rem;
}

.auth-card-content {
    padding: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    width: 1rem;
    height: 1rem;
    accent-color: #3b82f6;
}

.checkbox-text {
    font-size: 0.875rem;
    color: #374151;
}

.forgot-password {
    font-size: 0.875rem;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.forgot-password:hover {
    color: #2563eb;
}

.link {
    color: #3b82f6;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.auth-benefits {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
}

.auth-benefits-content {
    text-align: center;
}

.auth-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .auth-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .auth-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.auth-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.auth-benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.auth-benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.auth-benefit-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Instruction Steps */
.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.benefit-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px; /* Minimum touch target size */
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:active {
    background: #e2e8f0;
    transform: scale3d(0.98, 0.98, 1);
}

.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #64748b;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.faq-contact {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-contact-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.faq-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .faq-contact-actions {
        flex-direction: row;
    }
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

@media (min-width: 768px) {
    .download-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .download-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.download-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.download-feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}



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

@media (min-width: 768px) {
    .download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .download-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.download-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-card-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon {
    width: 2rem;
    height: 2rem;
}

.android-icon {
    color: #10b981;
}

.ios-icon {
    color: #3b82f6;
}

.windows-icon {
    color: #8b5cf6;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.download-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.download-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.info-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.download-btn {
    margin-top: auto;
}

.installation-instructions {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.instructions-content {
    text-align: center;
}

.instructions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .instructions-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .instructions-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.download-benefits {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefits-content {
    text-align: center;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* SEO Text */
.seo-text {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    text-align: justify;
    padding: 0 1rem;
}

/* Promotions SEO Text - White text, no background */
.promotions .seo-text {
    background: transparent;
    border-top: none;
    padding: 1.5rem 0;
}

.promotions .seo-text p {
    color: #ffffff;
}

/* Hero SEO Text */
.hero-seo-text {
    margin-top: 3rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.hero-seo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-seo-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-seo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.seo-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.hero-seo-text-content {
    flex: 1;
}

.hero-seo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.hero-seo-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: justify;
}

@media (min-width: 768px) {
    .hero-seo-text {
        margin-top: 4rem;
        padding: 2.5rem 0;
    }
    
    .hero-seo-content {
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .hero-seo-icon {
        width: 56px;
        height: 56px;
    }
    
    .seo-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-seo-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-seo-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-seo-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-seo-icon {
        align-self: center;
    }
    
    .hero-seo-description {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .seo-text p {
        font-size: 1rem;
        padding: 0 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    will-change: transform, opacity;
    contain: layout style paint;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-icon {
    width: 24px;
    height: 24px;
}

/* Performance optimizations for animations */
.feature-item, .sport-item, .promotion-card, .stat-card {
    will-change: transform, opacity;
    contain: layout style;
    backface-visibility: hidden;
    perspective: 1000px;
}

.floating-element {
    will-change: transform;
    contain: layout style paint;
    backface-visibility: hidden;
}

.gradient-text {
    will-change: background-position;
}

/* Optimize all hover elements */
.feature-item, .sport-item, .promotion-card, .stat-card, 
.mirror-card, .download-card, .feature-card, .btn-primary, 
.scroll-to-top, .faq-question {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .scroll-icon {
        width: 20px;
        height: 20px;
    }
    
    /* FAQ mobile improvements */
    .faq-question {
        padding: 1rem;
        min-height: 48px; /* Larger touch target for mobile */
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Improve touch feedback */
    .faq-question:active {
        background: #e2e8f0;
        transform: scale3d(0.95, 0.95, 1);
    }
    
    /* Force touch events to work */
    .faq-question {
        pointer-events: auto;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Ensure FAQ items are clickable */
    .faq-item {
        pointer-events: auto;
    }
}
