/* Cricket Theme Styles */

.cricket-theme {
    background: #0f2942;
    min-height: 100vh;
}

/* Cricket Header */
.cricket-header {
    background: rgba(10, 25, 40, 0.98);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cricket-header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cricket-logo {
    display: inline-block;
}

.cricket-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

/* Cricket Hero Section */
.cricket-hero {
    position: relative;
    overflow: visible;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.cricket-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 700px;
    width: 100%;
}

.cricket-hero-text {
    max-width: 600px;
    padding: 40px 0;
    text-align: left;
}

.cricket-hero-title {
    font-size: 84px;
    line-height: 1.1;
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow:
        0 0 14px rgba(255, 198, 90, 0.55),
        0 0 32px rgba(255, 180, 60, 0.30),
        0 0 60px rgba(255, 160, 40, 0.18),
        0 2px 4px rgba(0, 0, 0, 0.65);
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.cricket-hero-title span {
    display: inline;
    font-weight: 700;
}

.cricket-hero-title .blue-text {
    color: #00A3FF;
}

.cricket-hero-description {
    font-size: 25px;
    line-height: 1.6;
    color: #d9d9d9;
    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
    text-shadow:
        0 0 10px rgba(255, 198, 90, 0.40),
        0 0 22px rgba(255, 180, 60, 0.20),
        0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Cricket Stats */
.cricket-stats {
    display: none;
}

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

.cricket-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.cricket-stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* Cricket Hero Image */
.cricket-hero-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    text-align: center;
}

.cricket-hero-img {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .cricket-hero-title {
        font-size: 48px;
    }
    
    .cricket-stats {
        gap: 20px;
    }
    
    .cricket-stat-number {
        font-size: 28px;
    }
    
    .cricket-stat-text {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .cricket-hero {
        min-height: 380px;
    }
    
    .cricket-hero-title {
        font-size: 74px;
    }
    
    .cricket-hero-content {
        min-height: 380px;
        justify-content: center;
    }
    
    .cricket-hero-img {
        min-height: 380px;
        max-height: 380px;
    }
    
    .cricket-hero-text {
        max-width: 100%;
        text-align: center;
        background: rgba(10, 25, 40, 0.85);
        padding: 35px 30px;
        border-radius: 12px;
    }
    
    .cricket-stats {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        justify-items: center;
    }
    
    .cricket-stat {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cricket-hero {
        min-height: 0;
    }

    .cricket-hero-content {
        justify-content: center;
        align-items: center;
        min-height: 0;
    }

    .cricket-hero-title {
        font-size: clamp(16px, 4.6vw, 36px);
        letter-spacing: -0.5px;
        margin: 0 0 6px 0;
        white-space: nowrap;
        line-height: 1.1;
    }

    .cricket-hero-description {
        text-align: center;
    }

    .cricket-hero-image {
        background-image: none;
    }
    
    .cricket-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cricket-stat:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .cricket-hero-image::before {
        content: none;
    }
    
    .cricket-hero-content {
        position: relative;
        z-index: 2;
    }
    
    .cricket-hero-img {
        display: none;
    }
    
    .cricket-hero-text {
        max-width: 100%;
        text-align: center;
        padding: 10px 16px 12px;
        background: transparent;
    }
    
    .cricket-hero-description {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .cricket-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cricket-stat {
        text-align: center;
    }
    
    .cricket-stat-number {
        font-size: 32px;
    }
    
    .cricket-stat-text {
        font-size: 15px;
    }
}

/* Размеры hero-title на мобиле задаются через clamp() в правиле выше — */
/* отдельные брейкпоинты на 480/380 больше не нужны. */
