/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Pourquoi TCHOR */
.pourquoi-tchor {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.pourquoi-tchor::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pourquoi-content {
    position: relative;
    z-index: 2;
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pourquoi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.pourquoi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.pourquoi-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.pourquoi-card:nth-child(2) .pourquoi-icon {
    animation-delay: 0.5s;
}

.pourquoi-card:nth-child(3) .pourquoi-icon {
    animation-delay: 1s;
}

.pourquoi-card:nth-child(4) .pourquoi-icon {
    animation-delay: 1.5s;
}

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

.pourquoi-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pourquoi-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive pour Pourquoi TCHOR */
@media (max-width: 768px) {
    .pourquoi-tchor {
        padding: 60px 0;
    }
    
    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .pourquoi-card {
        padding: 30px 20px;
    }
    
    .pourquoi-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .pourquoi-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .pourquoi-card p {
        font-size: 0.9rem;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

/* Header et Navigation */
.header {
    background: rgba(15, 15, 35, 0.1);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo-small {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* Menu hamburger mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    background: #0A0A23;
    color: white;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Logo géant en arrière-plan */
.hero-background-logo {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.giant-logo-image {
    width: 80%;
    height: auto;
    opacity: 0.7;
    animation: giantLogoFloat 12s ease-in-out infinite;
    transform: rotate(0deg);
    user-select: none;
    pointer-events: none;
    object-fit: contain;
    max-height: 60vh;
}

@keyframes giantLogoFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1.1);
    }
    25% { 
        transform: rotate(0.02deg) scale(1.19);
    }
    50% { 
        transform: rotate(-0.02deg) scale(1.12);
    }
    75% { 
        transform: rotate(0.01deg) scale(1.18);
    }
}

.hero-content {
    max-width: 800px;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
}

/* Emblème TCHOR animé */
.tchor-emblem {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: emblemFloat 4s ease-in-out infinite;
}

.emblem-star {
    position: absolute;
    top: -10px;
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: starGlow 2s ease-in-out infinite;
    z-index: 2;
}

.emblem-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: #4a90e2;
    text-shadow: 
        0 0 10px rgba(74, 144, 226, 0.8),
        0 0 20px rgba(74, 144, 226, 0.6),
        0 0 30px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2c5aa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
    z-index: 1;
}

.emblem-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes emblemFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes starGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        text-shadow: 0 0 30px rgba(255, 215, 0, 1);
    }
}

@keyframes textGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(74, 144, 226, 0.8));
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(74, 144, 226, 1));
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.2;
}

.hero-highlight {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    animation: statFloat 3s ease-in-out infinite;
    min-width: 120px;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 2s; }

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74,144,226,0.3);
    border-color: rgba(74,144,226,0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a90e2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: 2rem;
}

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

/* Boutons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74,144,226,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

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

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.btn-download {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108,92,231,0.4);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.6);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(74,144,226,0.5), transparent);
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4a90e2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2 0%, #6c5ce7 100%);
    border-radius: 2px;
}

/* Téléchargement */
.download-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
}

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

.download-option {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(74,144,226,0.3);
}

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

.ios-steps-mini {
    margin: 1.5rem 0;
    text-align: left;
}

.step-mini {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.step-mini span {
    background: #4a90e2;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.download-option h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.download-option p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.file-info {
    font-size: 0.9rem;
    color: #4a90e2 !important;
    margin-bottom: 2rem !important;
    font-weight: 500;
    background: rgba(74,144,226,0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(74,144,226,0.3);
}

/* Comment jouer */
.how-to-play {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: white;
}

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

.rule-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(74,144,226,0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rule-card:hover {
    transform: translateY(-10px);
    border-color: #4a90e2;
    box-shadow: 0 20px 40px rgba(74,144,226,0.2);
}

.rule-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.rule-card h3 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.rule-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
}

/* Paiements */
.payments {
    background: white;
}

.payments-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: -1rem auto 3rem;
    max-width: 600px;
    line-height: 1.6;
}

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

.payment-method {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.payment-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px;
    transition: all 0.3s ease;
}

.payment-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.payment-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.payment-method h3 {
    color: #01875F;
}

/* Programme d'Affiliation */
.affiliation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

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

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

.affiliation-hero h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.affiliation-description {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.stat-card.primary::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-card.success::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.stat-card.warning::before {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.stat-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.affiliation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

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

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 600;
}

.feature-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.affiliation-bonus {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.affiliation-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.bonus-header {
    position: relative;
    z-index: 2;
}

.bonus-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.bonus-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.affiliation-progress {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a1a2e, #667eea);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.affiliation-how-it-works {
    margin: 4rem 0;
}

.affiliation-how-it-works h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFD700;
    text-align: center;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.affiliation-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    border: 2px solid rgba(255,255,255,0.1);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-affiliation {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-affiliation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(74,144,226,0.1);
    min-width: 250px;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4a90e2;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-link {
    color: #1a1a2e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

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

/* Modal iOS Installation */
.ios-install-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ios-install-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
    border: 2px solid #4a90e2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.ios-install-content h3 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ios-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    text-align: left;
}

.step-number {
    background: #4a90e2;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.mobile.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.1);
        transform: none;
    }
    
    .hero {
        padding: 100px 15px 40px;
    }
    
    .logo-container {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .giant-logo-image {
        width: 90%;
        max-height: 50vh;
    }
    
    .hero-background-logo {
        top: 5%;
        height: 50%;
    }
    
    .hero-content {
        bottom: 20%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-highlight {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 0.8rem 1.2rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-card {
        padding: 2rem 1.5rem;
    }
    
    .affiliation-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .affiliation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}
