/* Добавляем Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Karla:wght@400;700&display=swap');

/* Обновляем типографику */
body {
    font-family: 'Karla', sans-serif;
}

h1, h2, h3, .header__logo-text, .hero__title, .hero__subtitle, 
.casino-card__rating span, .casino-card__button {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
}

/* Общие стили */
:root {
    --primary-color: #161c26;
    --secondary-color: #e91e63;
    --text-color: #ffffff;
    --rating-color: #ffc107;
    --max-width: 1000px;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.container {
    max-width: var(--max-width) !important;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .navbar {
    padding: 0;
}

.header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
}

.header .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.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.header__logo img {
    height: 60px;
    width: auto;
}

.header__logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

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

.header .nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.header .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    position: relative;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

/*

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

.hero__title {
    position: relative;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    position: relative;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.hero__text {
    position: relative;
    color: #fff;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 15px;
}

/* Casino card */
.casino-card {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd700; /* Золотой ободок */
    position: relative;
}

.casino-card__logo-wrapper {
    background: #cccccc;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.casino-card__rating {
    text-align: center;
    padding: 0 20px;
}

.casino-card__rating span {
    font-size: 24px;
    font-weight: bold;
    color: var(--rating-color);
    display: block;
}

.casino-card__rating-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.casino-card__bonus {
    flex-grow: 1;
    padding: 0 30px;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.casino-card__button {
    background: linear-gradient(45deg, #e91e63, #ff5252);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    border: none;
    display: inline-block;
    text-align: center;
}

.casino-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #ff5252, #e91e63);
}

.casino-card__button:active {
    transform: translateY(1px);
}

.casino-card__note {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #999;
    font-size: 11px;
    text-align: right;
}

/* Контейнер для карточек */
.casino-list {
    padding: 20px 0;
    position: relative;
}

.casino-list .container {
    background: transparent;
}

/* Медиа запросы для карточек */
@media (max-width: 992px) {
    .casino-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    .casino-card__logo-wrapper {
        width: 160px;
        height: 100px;
        margin-bottom: 15px;
    }

    .casino-card__rating {
        width: 100%;
        margin: 10px 0;
    }

    .casino-card__bonus {
        width: 100%;
        padding: 10px 0;
        margin: 10px 0;
    }

    .casino-card__button {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .casino-card__note {
        position: static;
        margin-top: 10px;
        text-align: center;
    }

    .header .navbar-collapse {
        background-color: var(--primary-color);
        padding: 15px;
        margin: 10px -15px -10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .nav-link {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .casino-card__logo-wrapper {
        width: 140px;
        height: 80px;
    }

    .casino-card__bonus {
        font-size: 14px;
    }

    .casino-card__button {
        font-size: 12px;
        padding: 8px 20px;
    }

    .header__logo img {
        height: 40px;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 60px 0 30px;
    color: #6c757d;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer__logo-text {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.footer__logo-img {
    max-width: 200px;
    height: auto;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__disclaimer {
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer__disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #6c757d;
}

.footer__responsible {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer__responsible h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer__responsible p {
    font-size: 12px;
    line-height: 1.6;
}

.footer__age {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: bold;
}

.footer__notice {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer__notice p {
    font-size: 12px;
    line-height: 1.6;
    color: #6c757d;
}

.footer__logos {
    background-color: #e91e63;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
    align-items: center;
}

.footer__logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer__logos img[alt="GambleAware"],
.footer__logos img[alt="18+"] {
    height: 55px; /* Увеличенный размер для первых двух картинок */
}

.footer__copyright {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

/* Стили для дисклеймера */
.disclaimer {
    background: #86b7fe;
    padding: 60px 0;
    margin-top: 60px;
}

.disclaimer h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title,
.hero__subtitle,
.hero__text {
    animation: fadeIn 1s ease-out forwards;
}

.casino-card {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--card-index) * 0.2s);
    opacity: 0;
}

/* Страница правил */
.regulations-page {
    padding: 120px 0 60px;
}

.page-title {
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
}

.regulations-section {
    background: #2a3142;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.regulations-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.regulations-section ul {
    list-style: none;
    padding-left: 0;
}

.regulations-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.regulations-section ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Адаптивность для страницы правил */
@media (max-width: 768px) {
    .regulations-page {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .regulations-section {
        padding: 20px;
    }

    .regulations-section h2 {
        font-size: 1.5rem;
    }
}

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

.age-verification__content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.age-verification__title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.age-verification__text {
    color: #333;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.age-verification__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-verification__button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-verification__button--yes {
    background: var(--secondary-color);
    color: #fff;
}

.age-verification__button--no {
    background: #6c757d;
    color: #fff;
}

.age-verification__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Top banner */
.top-banner {
    background-color: #86b7fe;
    color: #fff;
  /*     padding: 8px 0; */
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner__left {
    display: flex;
    align-items: center;
}

.top-banner__right {
    color: #fff;
    font-size: 14px;
}

.top-banner__icon {
    height: 40px;
    margin-right: 10px;
}

/* Hero section updates */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 150px 0 80px;
}

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

.hero__title {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__subtitle {
    position: relative;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero__text {
    position: relative;
    color: #fff;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer updates */
.footer__logo {
    text-align: center;
    margin: 30px;
}

.footer__logo img {
    max-width: 70px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__text {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer__copyright {
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Добавляем стили для предупреждения */
.warning-banner {
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.2);
    margin-bottom: 40px;
}

.warning-banner p {
    margin: 0;
    line-height: 1.5;
}

.warning-banner__phone {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.warning-banner__phone:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Добавляем стили для новой секции */
.features {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, #1a2234 100%);
}

.features__title {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки для десктопа */
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--secondary-color), #ff4081);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.feature-card__icon i {
    font-size: 32px;
    color: #fff;
}

.feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Обновляем медиа-запросы */
@media (max-width: 1200px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки для планшетов */
    }
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr; /* 1 колонка для мобильных */
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Добавляем медиа-запрос для top-banner */
@media (max-width: 768px) {
    .top-banner {
        display: none;
    }
} 