:root {
    --primary-color: #31B89A;
    --secondary-color: #264653;
    --accent-color: #E76F51;
    --text-color: #333333;
    --background-color: #ffffff;
    --secondary-text: #666666;
    --light-bg: #f5f5f5;
    --heading-font: 'Phudu', cursive;
    --body-font: 'Noto Kufi Arabic', sans-serif;
}

body {
    background: var(--background-color) url('../img/back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
}

.header {
    background: linear-gradient(90deg, 
        rgba(30, 32, 36, 0.98), 
        rgba(42, 157, 143, 0.95),
        rgba(30, 32, 36, 0.98));
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 25px rgba(49, 184, 154, 0.2);
    border-bottom: 1px solid rgba(49, 184, 154, 0.3);
}

.header__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo-img {
    height: 62px;
    transition: all 0.3s;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(49, 184, 154, 0.3));
}

.header__logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(49, 184, 154, 0.5));
}

.header__alert {
    background: linear-gradient(90deg, 
        #1E2024, 
        #31B89A,
        #1E2024);
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.header__alert::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    gap: 2.5rem;
    position: relative;
}

.header__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 1px;
    background: transparent;
    text-shadow: 0 0 10px rgba(49, 184, 154, 0.3);
    font-family: var(--body-font);
}

.header__link:hover {
    color: #31B89A;
    text-shadow: 0 0 15px rgba(49, 184, 154, 0.5);
}

.header__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(49, 184, 154, 0.1),
        transparent);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.header__link:hover::before {
    transform: scaleY(1);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        #31B89A,
        transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.header__link:hover::after {
    transform: scaleX(1);
}

/* Добавляем эффект подсветки при наведении на меню */
.header__menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: radial-gradient(
        circle at center,
        rgba(49, 184, 154, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.header__menu:hover::before {
    opacity: 1;
}

.betting-sites {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.betting-card {
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem 2rem;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.betting-card__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-right-radius: 8px;
}

.betting-card__tag {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom-left-radius: 8px;
}

.betting-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.betting-card__logo-img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.betting-card__offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.betting-card__bonus {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.betting-card__amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.betting-card__percentage {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
}

.betting-card__value {
    color: #666;
    font-size: 1rem;
}

.betting-card__type {
    color: #999;
    font-size: 0.9rem;
}

.betting-card__features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.betting-card__feature {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.betting-card__feature::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.betting-card__action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.betting-card__button {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.betting-card__button:hover {
    background: #2a9d8f;
}

.betting-card__rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.betting-card__stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.betting-card__score {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.info-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.info-section__container {
    background: #ffffff;
    padding: 2rem;
   /* border-radius: 8px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-section__title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.info-section__subtitle {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    font-family: var(--heading-font);
}

.info-section__text {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--body-font);
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .betting-sites {
        padding: 1rem;
    }

    .betting-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        display: grid;
        grid-template-areas:
            "number logo tag"
            "offer offer offer"
            "action action action";
        grid-template-columns: 30px 1fr 30px;
        gap: 1rem;
        position: relative;
    }

    .betting-card__number {
        grid-area: number;
        position: relative;
        top: 0;
        left: 0;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
        margin: auto 0;
        background: var(--primary-color);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(49, 184, 154, 0.3);
    }

    .betting-card__tag {
        grid-area: tag;
        position: relative;
        top: 0;
        right: 0;
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        margin: auto 0;
    }

    .betting-card__logo {
        grid-area: logo;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .betting-card__logo-img {
        max-height: 30px;
        max-width: 120px;
        object-fit: contain;
        margin: 0 auto;
    }

    .betting-card__offer {
        grid-area: offer;
        padding: 0;
        text-align: center;
    }

    .betting-card__bonus {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    .betting-card__amount {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .betting-card__percentage {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .betting-card__value {
        font-size: 0.9rem;
    }

    .betting-card__type {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .betting-card__features {
        display: none;
    }

    .betting-card__amount {
        margin-bottom: 0;
    }

    .betting-card__action {
        grid-area: action;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .betting-card__button {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

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

    .betting-card__stars {
        font-size: 0.9rem;
        color: #ffd700;
    }

    .betting-card__score {
        font-size: 0.9rem;
        font-weight: 600;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .betting-card {
        grid-template-areas:
            "number logo tag"
            "offer offer offer"
            "action action action";
        padding: 1rem;
    }

    .betting-card__logo {
        padding: 0.5rem 0;
    }

    .betting-card__logo-img {
        max-width: 100px;
    }

    .betting-card__action {
        flex-direction: column;
        gap: 0.8rem;
    }

    .betting-card__button {
        width: 100%;
    }

    .betting-card__features {
        gap: 0.3rem;
    }

    .betting-card__feature {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

.footer {
    background: rgba(30, 32, 36, 0.98);
    padding: 4rem 0 2rem;
   /* margin-top: 3rem; */
    position: relative;
}

.footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.footer__links-group {
    margin-top: 1rem;
}

.footer__info-group {
    grid-column: 1 / -1;
    text-align: center;
}

.footer__logo-section {
    grid-column: 3;
    grid-row: 1;
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer__social-link:hover {
    opacity: 1;
}

.footer__links-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin: 0.8rem 0;
    transition: all 0.3s;
    font-family: var(--body-font);
}

.footer__link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer__info-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--body-font);
}

.footer__info-item {
    margin-bottom: 1rem;
}

.footer__info-label {
    color: #fff;
    font-weight: 500;
    margin-right: 0.5rem;
}

.footer__info-value {
    color: rgba(255, 255, 255, 0.6);
}

.footer__disclaimer {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__certifications {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.footer__cert-img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s;
}

.footer__cert-img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer__bottom-links {
    display: flex;
    gap: 2rem;
}

.footer__bottom-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__bottom-link:hover {
    color: #fff;
}

/* Добавляем стили для новой информационной секции */
.footer__info-group {
    color: rgba(255, 255, 255, 0.7);
}

.footer__info-item {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer__info-label {
    color: #fff;
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer__info-value {
    color: rgba(255, 255, 255, 0.7);
}

.footer__info-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Основная часть */
.main {
    padding: 2rem 0 0 0;
}

.hero {
    text-align: center;
    margin: 0rem 0 4rem;
    padding: 10rem 0rem  3rem 0rem;
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
  /*  border-radius: 8px; */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/back.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 2rem auto 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-family: var(--body-font);
}

.features-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 1rem;
}

.stats-section {
    background: linear-gradient(90deg, #1E2024, #2A2D35);
    padding: 4rem 0;
    margin: 6rem 0;
}

.faq-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 1rem;
}

/* Добавляем разделители между секциями */
.betting-sites::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(49, 184, 154, 0.2),
        transparent);
    margin: 4rem 0;
}

@media (max-width: 1200px) {
    .footer__container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__logo-section {
        grid-column: 3;
    }
}

@media (max-width: 992px) {
    .footer__container {
        grid-template-columns: 1fr;
    }
    
    .footer__info-group {
        grid-column: 1;
    }
    
    .footer__logo-section {
        grid-column: 1;
        justify-content: center;
        margin: 2rem 0;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links-group,
    .footer__info-group {
        text-align: center;
    }

    .footer__link:hover {
        transform: none;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer__bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__certifications {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .betting-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .betting-card__logo {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
        padding: 1rem 0;
    }

    .betting-card__offer {
        padding: 1rem 0;
    }

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

    .betting-card__action {
        width: 100%;
        padding: 1rem 0 0;
    }

    .betting-card__button {
        max-width: 280px;
        margin: 0 auto;
        border-radius: 0;
    }

    .footer__container {
        grid-template-columns: 1fr;
    }
    
    .footer__info-group {
        grid-column: 1;
        text-align: center;
    }
    
    .footer__info-item {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
    }

    .header__logo-img {
        height: 50px;
    }

    .header__menu {
        display: none;
    }

    .header__alert {
        padding: 0.6rem;
        font-size: 0.85rem;
        background: linear-gradient(90deg, #2A9D8F, #31B89A);
    }

    .hero {
        margin: 6rem 0 3rem;
        padding: 2rem 0;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__description {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
    }
    
    .footer__logo-section {
        grid-column: 1;
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links-group,
    .footer__info-group {
        text-align: center;
    }

    .footer__link:hover {
        transform: none;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer__bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__certifications {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 0 1rem;
    }

    .betting-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .betting-card__logo {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

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

    .betting-card__button {
        max-width: 200px;
        margin: 0 auto;
    }

    .betting-sites,
    .features-section,
    .faq-section {
        margin: 3rem auto;
    }

    .stats-section {
        margin: 3rem 0;
        padding: 3rem 0;
    }

    .betting-sites::after {
        margin: 2rem 0;
    }

    .footer__cert-img {
        height: 50px;
    }
    
    .footer__logo-img {
        height: 70px;
    }
    
    .footer__certifications {
        gap: 2rem;
    }
}

/* Добавляем стили для новых блоков */
.info-blocks {
    max-width: 1000px;
    margin: 4rem auto;
    padding-top: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-block {
    background: linear-gradient(145deg, rgba(30, 32, 36, 0.98), rgba(42, 157, 143, 0.1));
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 184, 154, 0.2);
}

.info-block__icon {
    font-size: 2.5rem;
    color: #31B89A;
    margin-bottom: 1.5rem;
}

.info-block__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

.info-block__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--body-font);
}

.sports-grid {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sport-card {
    background: linear-gradient(145deg, #1E2024, rgba(42, 157, 143, 0.1));
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(49, 184, 154, 0.2);
}

.sport-card:hover {
    transform: translateY(-5px);
    border-color: #31B89A;
}

.sport-card__icon {
    font-size: 2rem;
    color: #31B89A;
    margin-bottom: 1rem;
}

.sport-card__title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sport-card__odds {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: var(--body-font);
}

@media (max-width: 992px) {
    .info-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .info-blocks {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Стили для новых секций */
.features-title {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(30, 32, 36, 0.98), rgba(42, 157, 143, 0.05));
    padding-top: 2rem;
    text-align: center;
    border: 1px solid rgba(49, 184, 154, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #31B89A;
    transform: translateY(-5px);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card__title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.feature-card__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: var(--body-font);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #31B89A;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-item__label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-title {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

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

.faq-item {
    background: linear-gradient(145deg, rgba(30, 32, 36, 0.98), rgba(42, 157, 143, 0.05));
    padding: 2rem;
    border: 1px solid rgba(49, 184, 154, 0.2);
}

.faq-item__question {
    color: #31B89A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item__answer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--body-font);
}

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

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

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

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-title,
    .faq-title {
        font-size: 1.8rem;
    }
}

/* Стили для страницы Ligue 1 */
.hero--ligue1 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/ligue1-hero.jpg') no-repeat center center;
    background-size: cover;
}

.teams-grid {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-card__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    text-align: center;
}

.team-card__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.team-card__position {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.team-card__points {
    font-size: 1rem;
    color: var(--secondary-text);
}

.team-card__form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-card__result {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.team-card__result.win {
    background: #e6f7f3;
    color: var(--primary-color);
}

.team-card__result.draw {
    background: #f5f5f5;
    color: var(--secondary-text);
}

.team-card__result.loss {
    background: #ffe5e5;
    color: #ff4444;
}

.matches-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.match-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-card__date {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.match-card__teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.match-card__team {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.match-card__vs {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.match-card__odds {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.match-card__odd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.match-card__odd-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.match-card__odd-type {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.match-card__button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.match-card__button:hover {
    background: #2a9d8f;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    font-family: var(--heading-font);
}

@media (max-width: 992px) {
    .teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Стили для страницы Champions League */
.hero--champions {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/champions-hero.jpg') no-repeat center center;
    background-size: cover;
}

.phase-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.phase-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phase-card__header {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.phase-card__match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.phase-card__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phase-card__team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.phase-card__team-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.phase-card__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.phase-card__time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.phase-card__date {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.favorites-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.favorite-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-card__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.favorite-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.favorite-card__odds {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.favorite-card__odd {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.favorite-card__label {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.favorite-card__value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.favorite-card__stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.favorite-card__stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.favorite-card__stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.favorite-card__stat-label {
    font-size: 0.75rem;
    color: var(--secondary-text);
}

@media (max-width: 992px) {
    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .phase-grid,
    .favorites-grid {
        grid-template-columns: 1fr;
    }
}

.footer__info-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__info-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__info-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Стили для страниц условий и ответственной игры */
.hero--terms,
.hero--responsible {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../img/terms-hero.jpg') no-repeat center center;
    background-size: cover;
}

.terms-container,
.responsible-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.terms-block,
.responsible-block {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terms-block__title,
.responsible-block__title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.terms-block__text,
.responsible-block__text {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.terms-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-block__list li {
    color: var(--secondary-text);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.terms-block__list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.alert-box {
    background: linear-gradient(145deg, #ff4444, #ff6b6b);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.alert-box__icon {
    font-size: 2.5rem;
}

.alert-box__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-box__text {
    font-size: 1.2rem;
    margin: 0;
}

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

.responsible-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.responsible-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.responsible-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.responsible-card__text {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list__item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: var(--text-color);
    padding-left: 2.5rem;
    position: relative;
}

.warning-list__item::before {
    content: "⚠️";
    position: absolute;
    left: 1rem;
}

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

.tool-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    background: #2a9d8f;
    color: #fff;
}

.tool-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tool-card__text {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .responsible-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .alert-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Стили для страниц privacy и regulations */
.hero--privacy,
.hero--regulations {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../img/privacy-hero.jpg') no-repeat center center;
    background-size: cover;
}

.alert-box--light {
    background: #f8f9fa;
    color: var(--text-color);
    border: 1px solid #dee2e6;
}

.alert-box__logo {
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .alert-box__logo {
        height: 40px;
    }
}

/* Age Verification Modal */
.age-verify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verify__content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(49, 184, 154, 0.2);
    border: 1px solid rgba(49, 184, 154, 0.3);
}

.age-verify__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.age-verify__title {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.age-verify__text {
    color: var(--secondary-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.age-verify__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.age-verify__button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.age-verify__button--confirm {
    background: var(--primary-color);
    color: #ffffff;
}

.age-verify__button--confirm:hover {
    background: #2a9d8f;
    transform: translateY(-2px);
}

.age-verify__button--decline {
    background: #ff4444;
    color: #ffffff;
}

.age-verify__button--decline:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.age-verify__disclaimer {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .age-verify__buttons {
        flex-direction: column;
    }
    
    .age-verify__button {
        width: 100%;
    }
}

/* Добавим стили для мобильного меню */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.header__burger-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(30, 32, 36, 0.98), 
            rgba(42, 157, 143, 0.98));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }

    .header__nav {
        position: static;
    }

    .header__menu.active {
        right: 0;
        display: flex;
    }

    .header__link {
        font-size: 1.3rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .header__overlay.active {
        display: block;
    }

    .betting-card__features {
        display: none;
    }

    .betting-card__amount {
        margin-bottom: 0;
    }
} 