

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
}


.hero {
    position: relative;
    min-height: 600px;
    padding: 80px 6vw;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    opacity: 0.4;
    transform: scale(1.1);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,15,43,0.85), rgba(18,23,58,0.75));
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(75,225,236,0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(120deg, var(--accent-yellow), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-bonus {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(255,183,3,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-google-play {
    margin-top: 0;
}


@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image-wrapper {
        min-height: 300px;
        order: -1;
    }
}


.advantages {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin-bottom: 48px;
    color: var(--accent-cyan);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(75,225,236,0.12);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,183,3,0.5);
}

.advantage-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-cyan);
}

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



.team-missions {
    padding: 80px 0;
    background: rgba(18,23,58,0.4);
}

.missions-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(120deg, var(--accent-yellow), var(--accent-cyan));
    border-radius: 999px;
    transition: width 0.5s ease;
}


.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(75,225,236,0.12);
    display: none;
}

.testimonial-card:first-child {
    display: block;
}

.testimonial-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-fs {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid rgba(75,225,236,0.3);
    color: var(--accent-cyan);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(75,225,236,0.1);
    transform: scale(1.1);
}


.players-table-section {
    padding: 80px 0;
    background: rgba(18,23,58,0.3);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.players-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.players-table thead {
    background: linear-gradient(120deg, rgba(255,183,3,0.2), rgba(75,225,236,0.2));
}

.players-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(75,225,236,0.3);
}

.players-table tbody tr {
    border-bottom: 1px solid rgba(75,225,236,0.1);
    transition: var(--transition);
}

.players-table tbody tr:hover {
    background: rgba(75,225,236,0.05);
}

.players-table tbody tr:last-child {
    border-bottom: none;
}

.players-table td {
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 15px;
}

.position {
    font-weight: 700;
    color: var(--accent-yellow);
    font-size: 18px;
    text-align: center;
    width: 60px;
}

.player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.role-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-captain {
    background: rgba(255,183,3,0.2);
    color: var(--accent-yellow);
}

.role-navigator {
    background: rgba(75,225,236,0.2);
    color: var(--accent-cyan);
}

.role-support {
    background: rgba(124,91,255,0.2);
    color: var(--accent-purple);
}

.fs-points {
    font-weight: 700;
    color: var(--accent-yellow);
    font-size: 16px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: rgba(75,225,236,0.2);
    color: var(--accent-cyan);
}


.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,183,3,0.1), rgba(75,225,236,0.1));
}

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

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}


.game-section {
    padding: 80px 0;
    background: rgba(18,23,58,0.4);
}

.game-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.game-info {
    text-align: left;
}

.game-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.game-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.game-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.game-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fishing-game {
    border-radius: var(--radius);
    border: 2px solid rgba(75,225,236,0.3);
    background: #0a0e2a;
    box-shadow: var(--shadow);
    cursor: crosshair;
    max-width: 100%;
    height: auto;
}

@media (max-width: 968px) {
    .game-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .game-info {
        text-align: center;
    }
    
    .game-stats {
        justify-content: center;
    }
    
    #fishing-game {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 60px 4vw;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .advantages,
    .team-missions,
    .testimonials,
    .players-table-section,
    .cta-section,
    .game-section {
        padding: 60px 0;
    }
    
    .players-table {
        font-size: 14px;
    }
    
    .players-table th,
    .players-table td {
        padding: 12px 16px;
    }
    
    .players-table th {
        font-size: 12px;
    }
    
    #fishing-game {
        width: 100%;
        max-width: 100%;
    }
}


