* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    background: linear-gradient(90deg, #567edd 0.03%, #58bbf0 51.17%, #aa68f7 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


.header__menu-button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: white;
}

.header__menu-icon {
    position: relative;
    width: 1.5rem;
    height: 0.2rem;
    background-color: #333;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
}

.header__menu-icon::before {
    top: -0.5rem;
}

.header__menu-icon::after {
    bottom: -0.5rem;
}


.header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 2.5rem;
    max-width: 10rem;
}


.header__search {
    flex-grow: 1;
    max-width: 25rem;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.search-box__icon {
    display: flex;
    align-items: center;
    color: #999;
    margin-right: 0.5rem;
}

.search-box__input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    width: 100%;
}


.header__auth {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn--secondary {
    background-color: white;
    color: #333;
}

.btn--primary {
    background: linear-gradient(90deg, #E47575 0%, #E6886E 100%);
    color: white;
}


@media (max-width: 768px) {
    .header__search {
        display: none;
    }

    .header__auth {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    
}


.hero {
    background-image: linear-gradient(90deg, #567edd .03%, #58bbf0 51.17%, #aa68f7 100%);
    color: white;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.hero__step-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.text-link {
    color: #58bbf0;
    text-decoration: none;
}

.text-link:hover {
    color: #226c93;
    text-decoration: underline;
}

.hero__step-number::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero__step-badge {
    position: absolute;
    top: 0;
    left: -20px;
    transform: rotate(-15deg);
    z-index: 3;
}

.badge {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1;
    white-space: nowrap;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.badge--spins {
    background-color: #ff7c55;
}

.hero__step-bonus {
    margin-top: 1rem;
    text-align: center;
}

.hero__step-percentage {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero__step-amount {
    font-size: 1rem;
    font-weight: 500;
}

.hero__step-connector {
    flex: 0 0 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff5b87, #ff7c55);
    position: relative;
    z-index: 1;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn--cta {
    background: linear-gradient(90deg, #ff7c55 0%, #ff5b87 100%);
    color: white;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn__arrow {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.hero__terms {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero__terms:hover {
    opacity: 1;
    text-decoration: underline;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('wave-placeholder.png');
    background-size: 100% 100%;
}


.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero::before {
    width: 200px;
    height: 200px;
    background: rgba(255, 124, 85, 0.5);
    top: -100px;
    right: -50px;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: rgba(85, 187, 240, 0.3);
    bottom: -150px;
    right: -150px;
}


@media (max-width: 1024px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .hero__step-number {
        font-size: 6rem;
    }
    
    .hero__step-number::before {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero__steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero__step-connector {
        width: 4px;
        height: 30px;
        flex: none;
    }
    
    .hero__title {
        font-size: 1.8rem;
        max-width: 90%;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 5rem;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__step-number {
        font-size: 5rem;
    }
}


.games {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.games__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.games__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    background: #eee;
}

.category-btn--active {
    background: linear-gradient(90deg, #ff7c55 0%, #ff5b87 100%);
    color: white;
}

.category-btn--active:hover {
    background: linear-gradient(90deg, #ff6a3f 0%, #ff4777 100%);
}

.category-btn__icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.provider-selector {
    margin-left: auto;
}

.provider-selector__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.provider-selector__btn:hover {
    border-color: #ddd;
}

.provider-selector__icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.games__progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #ff7c55 0%, #ff5b87 100%);
    border-radius: 2px;
}

.games__section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.game-card__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding-top: 75%;
}

.game-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__badge {
    position: absolute;
    top: 1rem;
    left: 0;
    background: linear-gradient(90deg, #ff7c55 0%, #ff5b87 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 1;
}

.game-card__badge--exclusive {
    background: linear-gradient(90deg, #ae52d4 0%, #7a28cb 100%);
}

.game-card__badge--new {
    background: linear-gradient(90deg, #3ecf8e 0%, #27ae60 100%);
}

.game-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.game-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.game-card__favorite {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.game-card__favorite:hover {
    background-color: #f5f5f5;
}

.game-card__favorite svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: #aaa;
    stroke-width: 2;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.game-card__favorite:hover svg {
    stroke: #ff5b87;
}

.game-card__favorite.active svg {
    fill: #ff5b87;
    stroke: #ff5b87;
}


@media (max-width: 1024px) {
    .games__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .games__title,
    .games__section-title {
        font-size: 1.5rem;
    }
    
    .provider-selector {
        margin-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .provider-selector__btn {
        width: 100%;
        justify-content: center;
    }
    
    .games__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2rem 0;
    }
    
    .category-btn {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-card__info {
        padding: 0.75rem;
    }
    
    .game-card__title {
        font-size: 0.9rem;
    }
}


.info-section {
    padding: 4rem 0;
    background-color: white;
}

.info-section__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.info-section__text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-section__text p:last-child {
    margin-bottom: 0;
}

.info-section__table-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.info-table th {
    background: linear-gradient(90deg, #567edd 0.03%, #58bbf0 51.17%, #aa68f7 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.info-table th:first-child {
    width: 40%;
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #444;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.info-table tr:hover {
    background-color: #f0f0f0;
}


@media (max-width: 992px) {
    .info-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 0;
    }
    
    .info-section__text p {
        font-size: 1rem;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 2rem 0;
    }
    
    .info-table {
        font-size: 0.85rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.6rem;
    }
}


.registration {
    padding: 4rem 0;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: rgba(170, 104, 247, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.registration::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(88, 187, 240, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.registration__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.registration__content {
    position: relative;
    z-index: 1;
}

.registration__text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 1.5rem;
    height: calc(100% + 1.2rem);
    width: 2px;
    background: linear-gradient(to bottom, #58bbf0, #aa68f7);
    z-index: 0;
}

.step:last-child::before {
    display: none;
}

.step__number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #567edd, #58bbf0);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(86, 126, 221, 0.3);
    position: relative;
    z-index: 1;
}

.step:nth-child(2n) .step__number {
    background: linear-gradient(135deg, #58bbf0, #aa68f7);
    box-shadow: 0 4px 10px rgba(170, 104, 247, 0.3);
}

.step__content {
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    color: #444;
    font-size: 1.1rem;
    flex-grow: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step__content {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.registration__warning {
    background: linear-gradient(90deg, rgba(255, 123, 85, 0.15) 0%, rgba(255, 91, 135, 0.15) 100%);
    border-left: 4px solid #ff5b87;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.registration__warning p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .registration {
        padding: 3rem 0;
    }
    
    .registration__title {
        font-size: 1.75rem;
    }
    
    .registration__text {
        font-size: 1rem;
    }
    
    .step {
        gap: 1rem;
    }
    
    .step__number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }
    
    .step::before {
        top: 2.25rem;
        left: 1.25rem;
    }
    
    .step__content {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 2rem 0;
    }
    
    .registration__title {
        font-size: 1.5rem;
    }
    
    .steps {
        padding: 0;
    }
    
    .step {
        gap: 0.8rem;
    }
    
    .step__number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .step::before {
        top: 2rem;
        left: 1rem;
    }
    
    .step__content {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}


.login-section {
    background-color: white;
}

.login-section::before {
    background: rgba(86, 126, 221, 0.1);
}

.login-section::after {
    background: rgba(255, 123, 85, 0.1);
}


.games-overview {
    background-color: #f5f5f5;
}

.games-overview__content {
    grid-template-columns: 1fr;
    align-items: center;
}

.games-overview__text {
    padding-right: 2rem;
}

.games-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.games-list li {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.games-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #567edd, #58bbf0);
}

.games-overview__image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.games-overview__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.games-overview__image:hover .games-overview__img {
    transform: scale(1.03);
}

.games-overview .btn--cta {
    margin-top: 1rem;
    display: inline-block;
}

.games-overview__full-width {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.games-overview__full-width p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .games-overview__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .games-overview__text {
        padding-right: 0;
        order: 2;
    }
    
    .games-overview__image {
        order: 1;
    }
}


.bonuses {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(86, 126, 221, 0.05) 0%, rgba(170, 104, 247, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.bonuses__bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.bonuses__bg-element--left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 187, 240, 0.1) 0%, rgba(88, 187, 240, 0) 70%);
    top: -100px;
    left: -100px;
}

.bonuses__bg-element--right {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 123, 85, 0.1) 0%, rgba(255, 123, 85, 0) 70%);
    bottom: -200px;
    right: -150px;
}

.bonuses__content {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
}

.bonuses__text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.bonuses__table-wrapper {
    margin-top: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.bonuses-table th {
    background: linear-gradient(90deg, #567edd 0.03%, #58bbf0 51.17%, #aa68f7 100%);
    color: white;
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.bonuses-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7c55 0%, #ff5b87 100%);
}

.bonuses-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #444;
    transition: background-color 0.2s ease;
}

.bonuses-table tr:last-child td {
    border-bottom: none;
}

.bonuses-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.bonuses-table tr:hover td {
    background-color: #f0f0f0;
}

.bonuses-table td:first-child {
    font-weight: 600;
    color: #333;
}


@media (max-width: 768px) {
    .bonuses {
        padding: 3rem 0;
    }
    
    .bonuses__text {
        font-size: 1rem;
        text-align: left;
    }
    
    .bonuses__table-wrapper {
        margin-top: 2rem;
        transform: none;
        overflow-x: auto;
    }
    
    .bonuses-table {
        font-size: 0.9rem;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .bonuses-table th {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonuses {
        padding: 2rem 0;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }
}


.bonus-details {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.bonus-details__title {
    margin-bottom: 1.5rem;
}

.deposit-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.deposit-block {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.deposit-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.deposit-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #567edd 0%, #58bbf0 50%, #aa68f7 100%);
    z-index: 1;
}

.deposit-block__header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(86, 126, 221, 0.05) 0%, rgba(170, 104, 247, 0.05) 100%);
    border-bottom: 1px solid #eee;
}

.deposit-block__number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #567edd, #58bbf0);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(86, 126, 221, 0.3);
    flex-shrink: 0;
}

.deposit-block:nth-child(2) .deposit-block__number {
    background: linear-gradient(135deg, #58bbf0, #aa68f7);
    box-shadow: 0 4px 10px rgba(170, 104, 247, 0.3);
}

.deposit-block:nth-child(3) .deposit-block__number {
    background: linear-gradient(135deg, #aa68f7, #ff5b87);
    box-shadow: 0 4px 10px rgba(255, 91, 135, 0.3);
}

.deposit-block:nth-child(4) .deposit-block__number {
    background: linear-gradient(135deg, #ff5b87, #ff7c55);
    box-shadow: 0 4px 10px rgba(255, 124, 85, 0.3);
}

.deposit-block__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.deposit-block__content {
    padding: 1.5rem;
}

.deposit-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deposit-block__item {
    padding: 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px dashed #eee;
}

.deposit-block__item:last-child {
    border-bottom: none;
}

.deposit-block__amount {
    font-weight: 600;
    color: #333;
    position: relative;
    padding-left: 1.2rem;
}

.deposit-block__amount::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #567edd, #58bbf0);
}

.deposit-block:nth-child(2) .deposit-block__amount::before {
    background: linear-gradient(135deg, #58bbf0, #aa68f7);
}

.deposit-block:nth-child(3) .deposit-block__amount::before {
    background: linear-gradient(135deg, #aa68f7, #ff5b87);
}

.deposit-block:nth-child(4) .deposit-block__amount::before {
    background: linear-gradient(135deg, #ff5b87, #ff7c55);
}

.deposit-block__bonus {
    color: #555;
}

.bonus-terms {
    background: rgba(86, 126, 221, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #567edd;
    margin-top: 2rem;
}


.vip-program {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.vip-program__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vip-level {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.vip-level:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vip-level::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 0;
}

.vip-level--welcome::after {
    background: linear-gradient(90deg, #58bbf0, #567edd);
}

.vip-level--silver::after {
    background: linear-gradient(90deg, #a8a8a8, #d4d4d4);
}

.vip-level--gold::after {
    background: linear-gradient(90deg, #ffb347, #ffcc33);
}

.vip-level--elite::after {
    background: linear-gradient(90deg, #ff7c55, #ff5b87);
}

.vip-level__header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
                linear-gradient(120deg, rgba(86, 126, 221, 0.1), rgba(170, 104, 247, 0.1));
}

.vip-level--welcome .vip-level__header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
                linear-gradient(120deg, rgba(88, 187, 240, 0.15), rgba(86, 126, 221, 0.15));
}

.vip-level--silver .vip-level__header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
                linear-gradient(120deg, rgba(168, 168, 168, 0.15), rgba(212, 212, 212, 0.15));
}

.vip-level--gold .vip-level__header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
                linear-gradient(120deg, rgba(255, 179, 71, 0.15), rgba(255, 204, 51, 0.15));
}

.vip-level--elite .vip-level__header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
                linear-gradient(120deg, rgba(255, 124, 85, 0.15), rgba(255, 91, 135, 0.15));
}

.vip-level__badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.vip-level--welcome .vip-level__badge {
    background: linear-gradient(135deg, #58bbf0, #567edd);
}

.vip-level--silver .vip-level__badge {
    background: linear-gradient(135deg, #a8a8a8, #d4d4d4);
}

.vip-level--gold .vip-level__badge {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.vip-level--elite .vip-level__badge {
    background: linear-gradient(135deg, #ff7c55, #ff5b87);
}

.vip-level__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.vip-level__icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.vip-level__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.vip-level__content {
    padding: 1.5rem;
}

.vip-level__content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vip-level__perks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.vip-perk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(245, 245, 245, 0.7);
    border-radius: 0.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.vip-perk:hover {
    transform: translateX(5px);
    background: rgba(235, 235, 235, 0.9);
}

.vip-perk--inactive {
    opacity: 0.6;
}

.vip-perk--inactive:hover {
    transform: none;
}

.vip-perk__label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.vip-perk__value {
    color: #555;
    font-size: 0.95rem;
}

.vip-level--welcome .vip-perk__value {
    color: #567edd;
}

.vip-level--silver .vip-perk__value {
    color: #909090;
}

.vip-level--gold .vip-perk__value {
    color: #d4a017;
}

.vip-level--elite .vip-perk__value {
    color: #ff5b87;
}

@media (max-width: 992px) {
    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vip-program__title {
        font-size: 1.75rem;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .vip-level__name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .vip-program__title {
        font-size: 1.5rem;
    }
    
    .vip-level__header {
        padding: 1.2rem;
    }
    
    .vip-level__badge {
        width: 3rem;
        height: 3rem;
    }
    
    .vip-level__icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .vip-level__content {
        padding: 1.2rem;
    }
}


.cashback-program {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}


.cashback-tiers {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cashback-tier {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.cashback-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.cashback-tier__header {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(86, 126, 221, 0.05) 0%, rgba(170, 104, 247, 0.05) 100%);
    border-bottom: 1px solid #eee;
    position: relative;
}

.cashback-tier--silver .cashback-tier__header {
    background: linear-gradient(135deg, rgba(168, 168, 168, 0.1) 0%, rgba(212, 212, 212, 0.1) 100%);
}

.cashback-tier--gold .cashback-tier__header {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.1) 0%, rgba(255, 204, 51, 0.1) 100%);
}

.cashback-tier--elite .cashback-tier__header {
    background: linear-gradient(135deg, rgba(255, 124, 85, 0.1) 0%, rgba(255, 91, 135, 0.1) 100%);
}

.cashback-tier__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cashback-tier--silver .cashback-tier__icon {
    background: linear-gradient(135deg, #a8a8a8, #d4d4d4);
    color: white;
}

.cashback-tier--gold .cashback-tier__icon {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: white;
}

.cashback-tier--elite .cashback-tier__icon {
    background: linear-gradient(135deg, #ff7c55, #ff5b87);
    color: white;
}

.cashback-tier__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cashback-tier__content {
    padding: 1.5rem 1.2rem;
}

.cashback-tier__percentage {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cashback-tier--silver .cashback-tier__percentage {
    color: #909090;
}

.cashback-tier--gold .cashback-tier__percentage {
    color: #d4a017;
}

.cashback-tier--elite .cashback-tier__percentage {
    color: #ff5b87;
}

.cashback-tier__percentage span {
    font-size: 1.5rem;
    opacity: 0.7;
}

.cashback-tier__amount {
    font-size: 1.1rem;
    color: #555;
}


.cashback-live {
    margin-top: 3rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    position: relative;
}

.cashback-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7c55, #ff5b87);
    z-index: 1;
}

.cashback-live__header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5)), 
              linear-gradient(120deg, rgba(255, 124, 85, 0.1), rgba(255, 91, 135, 0.1));
    border-bottom: 1px solid #eee;
}

.cashback-live__badge {
    background: linear-gradient(135deg, #ff7c55, #ff5b87);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 91, 135, 0.3);
}

.cashback-live__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cashback-live__content {
    padding: 1.5rem;
}

.cashback-live__steps {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cashback-live__step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 124, 85, 0.05) 0%, rgba(255, 91, 135, 0.05) 100%);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.cashback-live__step:hover {
    transform: translateY(-5px);
}

.cashback-live__step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7c55, #ff5b87);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 91, 135, 0.2);
}

.cashback-live__step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cashback-live__step-content {
    flex: 1;
}

.cashback-live__step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem;
}

.cashback-live__step-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .cashback-tiers {
        flex-direction: column;
    }
    
    .cashback-live__steps {
        grid-template-columns: 1fr;
    }
}


.payment-methods {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern-bg.png');
    opacity: 0.03;
    z-index: 0;
}

.payment-methods__content {
    position: relative;
    z-index: 1;
}

.payment-methods__table-wrapper {
    margin-top: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.payment-methods-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.payment-methods-table th {
    background: linear-gradient(90deg, #567edd 0.03%, #58bbf0 51.17%, #aa68f7 100%);
    color: white;
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.payment-methods-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.payment-methods-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #444;
    transition: background-color 0.2s ease;
}

.payment-methods-table tr:last-child td {
    border-bottom: none;
}

.payment-methods-table tr:hover td {
    background-color: #f9f9f9;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding-left: 0.5rem;
}

.payment-method__name {
    font-weight: 600;
    color: #333;
}

.crypto-method {
    background-color: rgba(255, 124, 85, 0.05);
}

.crypto-method:hover td {
    background-color: rgba(255, 124, 85, 0.1) !important;
}

.payment-methods__icons {
    margin-top: 3rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.payment-methods__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 120px;
    height: 120px;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.payment-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #567edd;
}

.payment-icon span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.payment-methods__security {
    margin-top: 3rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #567edd;
}

.security-badge__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #567edd, #58bbf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.security-badge__icon svg {
    width: 2rem;
    height: 2rem;
}

.security-badge__content {
    flex: 1;
}

.security-badge__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.3rem;
}

.security-badge__text {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 992px) {
    .payment-methods-table {
        font-size: 0.9rem;
    }
    
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 1rem 0.8rem;
    }
    
    .payment-methods-table th {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .payment-methods {
        padding: 3rem 0;
    }
    
    .payment-methods-table {
        font-size: 0.85rem;
    }
    
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .payment-methods-table th:first-child {
        padding-left: 1rem;
    }
    
    .payment-method {
        padding-left: 0.3rem;
    }
    
    .payment-methods__table-wrapper {
        overflow-x: auto;
    }
    
    .security-badge {
        padding: 1.2rem;
    }
    
    .security-badge__icon {
        width: 3rem;
        height: 3rem;
    }
    
    .security-badge__icon svg {
        width: 1.7rem;
        height: 1.7rem;
    }
    
    .security-badge__title {
        font-size: 1.1rem;
    }
}


.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(88, 187, 240, 0.03) 0%, rgba(86, 126, 221, 0.03) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 124, 85, 0.05) 0%, rgba(255, 124, 85, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-items {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item__question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8)), 
                linear-gradient(120deg, rgba(86, 126, 221, 0.05), rgba(88, 187, 240, 0.05));
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.faq-item__question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 2rem;
}

.faq-item__icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #567edd, #58bbf0);
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon svg {
    transform: rotate(45deg);
}

.faq-item__answer {
    background: white;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, 
                padding 0.3s ease,
                opacity 0.3s ease,
                transform 0.3s ease;
}

.faq-item.active .faq-item__answer {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item__answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-item__question {
        padding: 1.2rem;
    }
    
    .faq-item__question h3 {
        font-size: 1rem;
    }
    
    .faq-item__icon {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .faq-item__icon svg {
        width: 1rem;
        height: 1rem;
    }
    
    .faq-item.active .faq-item__answer {
        padding: 1.2rem;
    }
}


.footer {
    background: #2d2d2d;
    color: #ffffff;
    position: relative;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url('wave-footer.svg') no-repeat center;
    background-size: cover;
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo-img {
    max-width: 150px;
    height: auto;
}

.footer__payments {
    width: 100%;
}

.footer__payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-text {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.payment-text:hover {
    color: #fff;
}

.footer__middle {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__age-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer__age-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer__disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

.footer__disclaimer p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.provider-text {
    color: #888;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.provider-text:hover {
    color: #ccc;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer__link {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-wave {
        top: -50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer__payment-methods,
    .footer__providers {
        gap: 1rem;
    }
    
    .footer__logo-img {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .footer-wave {
        top: -30px;
        height: 30px;
    }
    
    .footer__payment-methods,
    .footer__providers {
        gap: 0.8rem;
    }
    
    .payment-text,
    .provider-text {
        font-size: 0.75rem;
    }
    
    .footer__links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
} 