:root {
    --background-color: #161c26;
    --text-color: #ffffff;
    --button-color: #FF5733;
    --card-background: #ffffff;
    --gold-color: #FFD700;
}

body {
    background: rgb(63,94,251);
    background: radial-gradient(
        circle,
        rgb(11, 28, 111) 0%,
        rgba(22,28,38,1) 100%
    );
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Dosis', sans-serif;
    font-size: 1.1rem;
    min-height: 100vh;
}

.header {
    padding: 20px 0;
}

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

.header__logo-text {
    color: var(--gold-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0;
}

.header__logo img {
    height: 60px;
}

.header__contact-btn {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 8px 20px;
  /*  border-radius: 5px; */
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 40px 0;
}

.hero__title {
    color: var(--gold-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.hero__subtitle {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
}

.features__item {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.9rem;
}

.betting-card {
    background: var(--card-background);
   /* border-radius: 10px;*/
    display: flex;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.betting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.betting-card__brand {
    width: 180px;
    padding: 15px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.betting-card__brand--pmu {  background: #fc6625; }
.betting-card__brand--betsson { background: #ffa332; }
.betting-card__brand--pokerstars {  background: #7c7c7c;}
.betting-card__brand--genybet { background: #3ddac2; }
.betting-card__brand--feelingbet { background: #8B008B; }
.betting-card__brand--parions { background: #0066CC; }
.betting-card__brand--unibet { background: #096c39; }

.betting-card__number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.betting-card__rating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    z-index: 2;
    border: 2px solid;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.betting-card__brand--pmu .betting-card__rating {
    background: white;
    color: #D64000;
    border-color: #D64000;
}

.betting-card__brand--betsson .betting-card__rating {
    background: white;
    color: #FF8C00;
    border-color: #FF8C00;
}

.betting-card__brand--pokerstars .betting-card__rating {
    background: white;
    color: #000000;
    border-color: #000000;
}

.betting-card__brand--genybet .betting-card__rating {
    background: white;
    color: #40B3A2;
    border-color: #40B3A2;
}

.betting-card__brand--feelingbet .betting-card__rating {
    background: white;
    color: #8B008B;
    border-color: #8B008B;
}

.betting-card__brand--parions .betting-card__rating {
    background: white;
    color: #0066CC;
    border-color: #0066CC;
}

.betting-card__brand--unibet .betting-card__rating {
    background: white;
    color: #00A650;
    border-color: #00A650;
}

.betting-card__features {
    flex: 1;
    padding: 20px 30px;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(255,255,255,0.95), white);
}

.betting-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
    width: 100%;
}

.betting-card__features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.betting-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--button-color);
    font-weight: bold;
}

.betting-card__bonus {
   /* width: 220px;*/
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8f9fa;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.betting-card__bonus-amount {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.betting-card__btn {
    background: linear-gradient(45deg, #FF5733, #FF8C33);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.betting-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
    color: white;
    text-decoration: none;
}

.betting-card__btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.betting-card__btn:hover:before {
    left: 100%;
}

.footer {
    background: #000;
    padding: 0;
    margin-top: 50px;
}

.footer__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.footer__row--dark {
    background: #8b008b;
}

.footer__row--darker {
    background: #fc6626;
}

.footer__row img {
    height: 40px;
    object-fit: contain;
}

.footer__18 {
    height: 30px !important;
}

.footer__mediator {
    color: #fff;
    font-size: 1.1rem;
}

.footer__legal {
    text-align: center;
    font-size: 1rem;
    opacity: 0.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    line-height: 2;
}

.footer__links a {
    white-space: nowrap;
    color: var(--gold-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 0.8;
    color: var(--gold-color);
    text-decoration: underline;
}

.footer__separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer__copyright {
    text-align: center;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.betting-card__logo {
    width: 120px;
    height: 60px;
    margin: 20px auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.betting-card__label {
    background: #FFD700;
    color: #000;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer__row {
        flex-wrap: wrap;
        gap: 20px;
        padding: 15px;
    }

    .footer__row img {
        height: 30px;
    }

    .footer__links {
        gap: 8px 15px;
    }
    
    .footer__links a {
        width: calc(50% - 15px);
        text-align: center;
    }
    
    .footer__separator {
        display: none;
    }

    .betting-card {
        flex-direction: column;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .betting-card__brand {
        width: 100%;
        padding: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
    }

    .betting-card__logo {
        width: 100px;
        height: 40px;
        margin: 0;
        order: 2;
    }

    .betting-card__number {
        position: static;
        order: 1;
        margin-right: 10px;
    }

    .betting-card__rating {
        position: static;
        order: 3;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        right: 0;
        transform: none;
    }

    .betting-card__label {
        display: none;
    }

    .betting-card__features {
        padding: 15px;
    }

    .betting-card__features ul {
        margin: 0;
        padding-left: 20px;
    }

    .betting-card__features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .betting-card__bonus {
        width: 100%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .betting-card__bonus-amount {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
        width: 100%;
    }

    .betting-card__btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    @media (min-width: 576px) and (max-width: 768px) {
        .betting-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

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

    .header__logo-text {
        font-size: 1.5rem;
    }

    .header__logo img {
        height: 50px;
    }

    .navbar-collapse {
       /* background: rgba(0, 0, 0, 0.95); */
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        text-align: center;
    }

    .header__contact-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 1.8rem;
    }
    
    .features__item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .betting-card__logo {
        max-width: 120px;
    }
}

.page-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
}

.page-content__title {
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 2.5rem;
}

.page-content__text {
    color: var(--text-color);
    font-size: 1.1rem;
}

.page-content__text h2 {
    color: var(--gold-color);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.page-content__text p,
.page-content__text ul {
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-content__text ul {
    padding-left: 20px;
}

.page-content__text li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .page-content {
        padding: 20px;
    }
    
    .page-content__title {
        font-size: 1.8rem;
    }
    
    .page-content__text h2 {
        font-size: 1.3rem;
    }
}

/* Обновляем стили загрузочного экрана */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(63,94,251);
    background: radial-gradient(
        circle,
        rgb(11, 28, 111) 0%,
        rgba(22,28,38,1) 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.loading__spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .betting-card__features ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .betting-card__features {
        padding: 15px 20px;
    }
    
    .betting-card__features li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
}

/* Обновляем стили для бонусов с цветами под бренды */
.betting-card__brand--pmu ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #D64000;
}

.betting-card__brand--betsson ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #FF8C00;
}

.betting-card__brand--pokerstars ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #000000;
}

.betting-card__brand--genybet ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #40B3A2;
}

.betting-card__brand--feelingbet ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #8B008B;
}

.betting-card__brand--parions ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #0066CC;
}

.betting-card__brand--unibet ~ .betting-card__bonus .betting-card__bonus-amount {
    color: #00A650;
}

.container {
    max-width: 1000px !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-label {
    color: var(--gold-color);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem;
    font-size: 1.1rem;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Стили для страницы контактов */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

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

.contact-info li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--gold-color);
    margin-right: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.contact-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form select option {
    background: var(--background-color);
    color: white;
}

.page-content__text a {
    color: var(--gold-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-content__text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.page-content__text ul {
    list-style: none;
    padding-left: 0;
}

.page-content__text li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-content__text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

/* Специфичные корректировки для некоторых логотипов, если нужно */
.betting-card__brand--pmu .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--betsson .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--pokerstars .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--genybet .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--feelingbet .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--parions .betting-card__logo {
    width: 120px;
    height: 60px;
}

.betting-card__brand--unibet .betting-card__logo {
    width: 120px;
    height: 60px;
}

/* Стили для очень маленьких экранов */
@media (max-width: 375px) {
    .betting-card__brand {
        min-height: 70px;
    }

    .betting-card__logo {
        width: 80px;
        height: 35px;
    }

    .betting-card__rating {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .betting-card__features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(124 124 124);
    padding: 15px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-banner__text {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.cookie-banner__btn--accept {
    background: var(--gold-color);
    color: black;
}

.cookie-banner__btn--accept:hover {
    background: #ffd900;
}

.cookie-banner__btn--settings {
    background: transparent;
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
}

.cookie-banner__btn--settings:hover {
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__text {
        margin-bottom: 10px;
    }
}

.footer__row a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer__row a:hover {
    opacity: 0.8;
}

/* Убираем подчеркивание у ссылок с картинками */
.footer__row a:hover {
    text-decoration: none;
}

/* Попапы */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.popup.show {
    display: flex;
}

.popup__content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.popup__content h3 {
    color: #333;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
}

.popup__content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.popup__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.popup__btn {
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.popup__btn--confirm {
    background: var(--gold-color);
    color: black;
}

.popup__btn--confirm:hover {
    background: #ffd900;
}

.popup__btn--decline {
    background: #dc3545;
    color: white;
}

.popup__btn--decline:hover {
    background: #bb2d3b;
}

/* Для попапа благодарности */
.popup__btn {
    background: var(--gold-color);
    color: black;
    padding: 10px 30px;
}

.popup__btn:hover {
    background: #ffd900;
}

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

    .popup__buttons {
        flex-direction: column;
    }

    .popup__btn {
        width: 100%;
    }
}

/* Предупреждающее сообщение */
.warning-message {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    text-align: center;
    border-radius: 8px;
    position: relative;
}

.warning-message__age {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #261f5d;
    color: #dc3545;
    padding: 0 15px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
}

.warning-message__text {
    color: #dc3545;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.warning-message__phone {
    font-weight: bold;
    color: #dc3545;
    text-decoration: underline;
    white-space: nowrap;
}

.warning-message__note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .warning-message {
        margin: 20px 15px;
        padding: 15px;
    }

    .warning-message__text {
        font-size: 1rem;
    }
} 