/* 1win Color Scheme - Blue & Dark */
:root {
    /* Blue tones - главный цвет бренда 1win */
    --primary-green: #2E5BFF;
    --light-green: #4A7AFF;
    --dark-green: #1E42CC;
    --neon-green: #5C8FFF;
    
    /* Dark backgrounds */
    --bg-dark: #1C2841;
    --bg-secondary: #253452;
    --bg-tertiary: #2E3F5F;
    
    /* Text colors */
    --text-white: #FFFFFF;
    --text-light: #F1F5F9;
    --text-gray: #CBD5E1;
    --text-dark-gray: #94A3B8;
    
    /* Accent colors */
    --accent-blue: #3B82F6;
    --accent-yellow: #FBB040;
    --accent-red: #EF4444;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, #2E5BFF 0%, #1E42CC 100%);
    --gradient-dark: linear-gradient(135deg, #1C2841 0%, #253452 50%, #2E3F5F 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(46, 91, 255, 0.4);
}

.logo-flag {
    font-size: 1.5rem;
}

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

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav a:hover {
    color: var(--primary-green);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
}

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

.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-menu .nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu .nav a:hover {
    background: var(--bg-secondary);
    color: var(--primary-green);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(46, 91, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 91, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(46, 91, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .brand {
    background: linear-gradient(135deg, #2E5BFF 0%, #4A7AFF 50%, #5C8FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    text-shadow: 0 0 30px rgba(46, 91, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-title .tagline {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(46, 91, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(46, 91, 255, 1));
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Uzbekistan Banner */
.uzbekistan-banner {
    background: var(--bg-dark);
    padding: 0;
    margin: 0;
}

.uzbekistan-banner .container {
    max-width: 100%;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(46, 91, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(46, 91, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--text-white);
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.game-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(46, 91, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(46, 91, 255, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gradient-green);
}

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.game-info p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.game-rtp {
    display: inline-block;
    background: rgba(46, 91, 255, 0.2);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Bonus Cards */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.bonus-card {
    background: var(--gradient-green);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-card h3 {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.bonus-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.bonus-card .btn {
    position: relative;
    z-index: 1;
    background: var(--text-white);
    color: var(--dark-green);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.review-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.review-author h4 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.review-location {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Info Table */
.info-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(46, 91, 255, 0.1);
}

.info-table th {
    background: var(--dark-green);
    color: var(--text-white);
    font-weight: 600;
}

.info-table td {
    color: var(--text-gray);
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--primary-green);
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer p {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Responsive Design */

/* Tablets and small laptops */
@media (max-width: 968px) {
    .nav,
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .logo-flag {
        font-size: 1.25rem;
    }

    .hero-title .brand {
        font-size: 3rem;
    }
    
    .hero-title .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .features-grid,
    .bonus-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    section div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    /* Адаптивные таблицы */
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem;
    }
}

/* Mobile phones */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 3rem 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-flag {
        font-size: 1.1rem;
    }

    .hero-title .brand {
        font-size: 2.5rem;
    }
    
    .hero-title .tagline {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }

    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }

    .game-image {
        height: 150px;
    }

    .bonus-card {
        padding: 2rem 1.5rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem !important;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }

    .info-table {
        font-size: 0.85rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .info-table td {
        display: block;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(46, 91, 255, 0.1);
    }
    
    .info-table td:first-child {
        font-weight: 600;
        color: var(--primary-green);
        padding-bottom: 0.25rem;
    }
    
    .info-table td:last-child {
        padding-top: 0.25rem;
        padding-bottom: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer p {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }
    
    div[style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
    
    img[alt*="Mobile"] {
        border-radius: 12px !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Very small phones */
@media (max-width: 375px) {
    .hero-title .brand {
        font-size: 2rem;
    }
    
    .hero-title .tagline {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }
    
    .feature-card,
    .game-card,
    .bonus-card,
    .review-card {
        transition: none;
    }
    
    a, button {
        -webkit-tap-highlight-color: rgba(46, 91, 255, 0.3);
    }
}

/* Landscape mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-title .brand {
        font-size: 2.5rem;
    }
}
