:root {
    --primary-green: #4CAF50;
    --dark-bg: #1E1E1E;
    --text-light: #FFFFFF;
    --text-gray: #9E9E9E;
    --accent-orange: #FF5722;
    --accent-orange-light: #ff784e;
}

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

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__alert {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 0;
    text-align: center;
}

.header__alert p {
    color: #fff;
    font-size: 11px;
    margin: 0;
    opacity: 0.8;
}

.header__main {
    padding: 15px 0;
}

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

.header__logo {
    display: block;
    width: 120px;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__nav {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 15px;
}

.header__nav-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    text-transform: uppercase;
}

.header__nav-link:hover {
    color: var(--primary-green);
    background-color: rgba(76, 175, 80, 0.1);
}

.header__menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.header__menu-link:hover {
    color: var(--primary-green);
}

.header__nav-mobile {
    display: none;
}

.header__burger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.header__burger span:first-child {
    top: 0;
}

.header__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__burger span:last-child {
    bottom: 0;
}

.header__burger.active span:first-child {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

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

.header__burger.active span:last-child {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
}

.hero {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero__title {
    color: var(--text-light);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero__subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.hero__feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.hero__feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__feature-icon i {
    font-size: 28px;
}

.hero__feature span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.hero__feature:hover .hero__feature-icon i {
    color: var(--primary-green);
    transform: scale(1.2);
}

.betting-cards__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.betting-card {
    background: linear-gradient(to right, #1a1a1a, #2c2c2c);
    border: 1px solid #333;
    margin-bottom: 15px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.betting-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.betting-card__label {
    background-color: var(--accent-orange);
    color: white;
    padding: 4px 10px;
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 12px;
    border-radius: 0 0 5px 5px;
}

.betting-card__content {
    display: grid;
    grid-template-columns: 180px 120px 1fr 200px;
    grid-template-areas: 
        "logo rating bonus button"
        "logo rating bonus payments";
    align-items: center;
    padding: 25px 20px;
    gap: 15px;
}

.betting-card__logo {
    grid-area: logo;
    background: #000;
    padding: 15px;
    border-radius: 5px;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.betting-card__rating {
    grid-area: rating;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.betting-card__bonus {
    grid-area: bonus;
    text-align: center;
}

.bonus-text {
    color: var(--primary-green);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bonus-amount {
    color: var(--accent-orange);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-type {
    color: #9E9E9E;
    font-size: 13px;
}

.betting-card__button {
    grid-area: button;
    background: linear-gradient(to bottom, var(--primary-green), #45a049);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.betting-card__button:hover {
    background: linear-gradient(to bottom, #45a049, #409444);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.betting-card__payments {
    grid-area: payments;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.betting-card__payments img {
    height: 20px;
    width: auto;
  /*  filter: grayscale(100%) brightness(1.5);*/
    opacity: 0.8;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 40px auto;
    padding: 30px;
}

.content__article {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content__article:hover {
    transform: translateY(-5px);
}

.content__article h2 {
    color: var(--primary-green);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.content__article p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.content__article ul {
    list-style: none;
    padding: 0;
}

.content__article ul li {
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.content__article ul li:before {
    content: "•";
    color: var(--accent-orange);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.content__list {
    color: var(--text-gray);
    padding-left: 20px;
    margin-top: 15px;
}

.content__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content__list strong {
    color: var(--text-light);
}

.footer {
   /* background-color: #0a0a0a;*/
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__links {
    margin-bottom: 30px;
}

.footer__title {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.footer__menu-item {
    margin-bottom: 15px;
}

.footer__menu-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer__menu-link:hover {
    color: var(--primary-green);
}

.footer__info {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__text {
    color: #666;
    font-size: 12px;
    margin: 10px 0;
    line-height: 1.5;
}

.footer__partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer__partner-logo {
    height: 30px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer__partner-logo:hover {
    opacity: 1;
}

.terms__container,
.responsible-gaming__container,
.privacy__container,
.regulations__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 40px;
}

.terms__title,
.responsible-gaming__title,
.privacy__title,
.regulations__title {
    font-family: 'Goblin One', cursive;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: center;
}

.terms__section,
.responsible-gaming__section,
.privacy__section,
.regulations__section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.terms__section h2,
.responsible-gaming__section h2,
.privacy__section h2,
.regulations__section h2 {
    font-family: 'Goblin One', cursive;
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 20px;
}

.terms__section p,
.responsible-gaming__section p,
.privacy__section p,
.regulations__section p,
.terms__section li,
.responsible-gaming__section li,
.privacy__section li,
.regulations__section li {
    font-family: 'Numans', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .terms__container,
    .responsible-gaming__container,
    .privacy__container,
    .regulations__container {
        padding: 100px 15px 30px;
    }

    .terms__title,
    .responsible-gaming__title,
    .privacy__title,
    .regulations__title {
        font-size: 24px;
    }

    .terms__section,
    .responsible-gaming__section,
    .privacy__section,
    .regulations__section {
        padding: 20px;
    }

    .header__menu {
        display: none;
    }

    .header__nav-mobile {
        display: block;
    }

    .footer__links {
        text-align: center;
    }

    .policy__container {
        padding: 20px;
    }

    .header__alert p {
        font-size: 10px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .navbar-toggler {
        display: block;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--primary-green);
        padding: 8px 12px;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1002;
        margin-top: 23px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(76, 175, 80, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding-top: 80px;
        z-index: 1001;
    }

    .header__nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
        top: auto;
        right: auto;
    }

    .header__nav-link:nth-child(odd) {
        background-color: rgba(255, 87, 34, 0.1);
    }

    .header__nav-link:nth-child(even) {
        background-color: rgba(76, 175, 80, 0.1);
    }

    .hero__features {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero__feature {
        width: 100%;
        max-width: 200px;
    }

    .betting-card__content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "rating"
            "bonus"
            "button"
            "payments";
    }

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

    .betting-card__payments {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .content__article {
        padding: 20px;
        margin: 15px;
    }

    .content__article h2 {
        font-size: 20px;
    }

    .content__article p {
        font-size: 14px;
    }

    .content__article ul li {
        font-size: 14px;
        padding-left: 20px;
    }

    .hero__title {
        font-size: 24px;
        padding: 0 15px;
    }

    .hero__subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .betting-cards__container {
        padding: 20px 15px;
    }

    .content {
        margin: 20px 15px;
        padding: 15px;
    }

    .betting-card__rating {
        font-size: 24px;
        margin: 10px 0;
    }

    .footer__title {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: block !important;
        position: static;
        background: none;
        padding: 0;
        height: auto;
    }

    .header__nav {
        position: absolute;
        right: 20px;
        top: 20px;
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .header__nav-link {
        font-size: 13px;
        padding: 6px 12px;
        width: auto;
    }
}

.policy {
    background-color: #0a0a0a;
    min-height: 100vh;
    padding-top: 80px;
}

.policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy__title {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.policy__menu-item {
    margin-bottom: 15px;
}

.policy__menu-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.policy__menu-link:hover {
    color: #999;
}

.navbar-toggler {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main {
    padding-top: 90px;
}

/* Добавляем затемнение для лучшей читаемости */
.page {
    background: rgba(30, 30, 30, 0.75);
    min-height: 100vh;
}

/* Добавляем анимацию для иконок */
.hero__feature-icon i {
    transition: transform 0.3s ease;
}

.hero__feature:hover .hero__feature-icon i {
    color: var(--primary-green);
    transform: scale(1.2);
}

/* Все заголовки */
h1, h2, h3, h4, h5, h6,
.hero__title,
.content__article h2,
.terms__title,
.responsible-gaming__title,
.privacy__title,
.regulations__title,
.footer__title,
.policy__title {
    font-family: 'Goblin One', cursive;
}

/* Добавляем новый шрифт для всего контентного текста */
.hero__subtitle,
.content__article p,
.content__article ul li,
.terms__section p,
.responsible-gaming__section p,
.privacy__section p,
.regulations__section p,
.footer__text,
.policy__menu-link {
    font-family: 'Numans', sans-serif;
}

/* Добавляем оранжевую подсветку для ссылок при наведении */
.header__nav-link:hover {
    color: var(--primary-green);
    background-color: rgba(76, 175, 80, 0.1);
}

/* Добавляем оранжевый цвет для важных элементов */
.hero__subtitle strong,
.content__article strong {
    color: var(--primary-green);
}

/* Добавляем зеленые акценты */
.hero__subtitle strong {
    color: var(--primary-green);
}

/* Мобильное меню */
@media (max-width: 768px) {
    .navbar-toggler {
        border: 1px solid var(--primary-green);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(76, 175, 80, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Чередуем цвета в мобильном меню */
    .header__nav-link:nth-child(odd) {
        background-color: rgba(255, 87, 34, 0.1);
    }

    .header__nav-link:nth-child(even) {
        background-color: rgba(76, 175, 80, 0.1);
    }
}

/* Чередуем цвета в списках */
.content__article ul li:nth-child(odd):before {
    color: var(--accent-orange);
}

.content__article ul li:nth-child(even):before {
    color: var(--primary-green);
}

/* Добавляем зеленые акценты в футер */
.footer__menu-link:hover {
    color: var(--primary-green);
}

/* Анимация иконок */
.hero__feature:hover .hero__feature-icon i {
    color: var(--primary-green);
    transform: scale(1.2);
}

.hero__feature:nth-child(even):hover .hero__feature-icon i {
    color: var(--accent-orange);
}

/* Добавляем стили для нового блока в футере */
.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__about {
    color: var(--text-gray);
}

.footer__description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #999;
}

.footer__features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer__feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__feature i {
    color: var(--accent-orange);
    font-size: 16px;
}

.footer__feature span {
    font-size: 13px;
    color: #999;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__features {
        flex-direction: column;
        gap: 15px;
    }

    .footer__description {
        text-align: center;
    }

    .footer__feature {
        justify-content: center;
    }
}

/* Стили для модального окна проверки возраста */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.active {
    display: flex;
}

.age-modal__content {
    background: linear-gradient(to bottom, #2c2c2c, #1a1a1a);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.age-modal__title {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Goblin One', cursive;
}

.age-modal__text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-family: 'Numans', sans-serif;
    line-height: 1.6;
}

.age-modal__text p {
    margin-bottom: 15px;
}

.age-modal__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-modal__button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Numans', sans-serif;
}

.age-modal__button--confirm {
    background: linear-gradient(to bottom, var(--primary-green), #45a049);
    color: white;
}

.age-modal__button--decline {
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-orange-light));
    color: white;
}

.age-modal__button:hover {
    transform: translateY(-2px);
}

.age-modal__button--confirm:hover {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.age-modal__button--decline:hover {
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

@media (max-width: 768px) {
    .age-modal__content {
        padding: 20px;
    }

    .age-modal__buttons {
        flex-direction: column;
    }

    .age-modal__button {
        width: 100%;
    }
} 