html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #180027;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

.header {
    height: 82px;
    background: #3b0a61;
    border-bottom: 1px solid rgba(255, 179, 0, .35);
    display: flex;
    align-items: center;
    padding: 0 48px;
    gap: 28px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo {
    font-size: 34px;
    font-weight: 900;
}

.logo span {
    color: #ffb300;
}

.search {
    margin-left: auto;
    width: 380px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #d9c7ff;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 12px;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.header-btn {
    height: 48px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#9d50ff, #6e26b8);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
}

.header-btn.login {
    background: linear-gradient(#ffb300, #ff8c00);
    color: #2b003f;
}

.page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 42px 28px;
}

.top-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    overflow: hidden;
    border-radius: 18px;
}

.top-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(24,0,39,.95) 0%,
        rgba(24,0,39,.75) 42%,
        rgba(24,0,39,.25) 100%
    );
}

.top-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-left: 70px;
}

.top-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
}

.top-hero-content p {
    font-size: 24px;
    line-height: 1.45;
    color: #e4d5ff;
    margin-bottom: 36px;
}

.top-hero-btn,
.claim-btn,
.bonus-overlay-btn {
    background: linear-gradient(#ffb300, #ff8c00);
    color: #2a003f;
    font-weight: 900;
    text-decoration: none;
}

.top-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 46px;
    font-size: 20px;
    border-radius: 14px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #ffb300;
}

.hero-content p {
    color: #d9c7ff;
    margin-bottom: 24px;
    font-size: 18px;
}

.bonus-card {
    min-height: 380px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,179,0,.45);
    background: #23003f;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 42% 58%;
    cursor: pointer;
    transition: .25s;
    position: relative;
}

.bonus-card:hover,
.bonus-card.selected {
    border-color: #ffb300;
    box-shadow: 0 0 0 2px rgba(255,179,0,.25), 0 0 35px rgba(157,80,255,.25);
}

.bonus-info {
    position: relative;
    z-index: 2;
    padding: 38px;
    background: linear-gradient(90deg, #180027 0%, #220038 100%);
}

.label {
    display: inline-block;
    background: linear-gradient(#ffb300, #ff8c00);
    color: #2a003f;
    padding: 8px 14px;
    font-weight: 900;
    margin-bottom: 18px;
    border-radius: 8px;
}

.bonus-info h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #ffcc33;
}

.bonus-info ul {
    list-style: none;
}

.bonus-info li {
    color: #e4d5ff;
    margin-bottom: 10px;
    font-size: 16px;
}

.bonus-info li::before {
    content: "👑";
    margin-right: 10px;
}

.bonus-art {
    position: relative;
    min-height: 380px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #250040;
}

.art-one {
    background-image: url('../images/bonus1.png');
}

.art-two {
    background-image: url('../images/bonus2.png');
}

.bonus-overlay-btn {
    position: absolute;
    right: 55px;
    bottom: 45px;
    width: 390px;
    max-width: 45%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 14px;
    z-index: 10;
    transition: .2s;
}

.bonus-overlay-btn:hover,
.top-hero-btn:hover,
.claim-btn:hover,
.header-btn:hover {
    transform: scale(1.03);
    text-decoration: none;
}

.claim-btn {
    width: 100%;
    height: 66px;
    font-size: 24px;
    border-radius: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us {
    margin-top: 90px;
    margin-bottom: 90px;
}

.why-us h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #ffb300;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-card {
    background: #24103a;
    border: 1px solid rgba(255,179,0,.28);
    padding: 30px;
    border-radius: 18px;
}

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    color: #d9c7ff;
}

.footer {
    margin-top: 80px;
    background: #2d0b52;
    padding: 40px 60px;
    border-top: 1px solid rgba(255,179,0,.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #ffcc66;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer a:hover {
    color: #ffffff;
}

.copyright {
    background: #140020;
    text-align: center;
    padding: 24px;
    color: #d9c7ff;
    font-size: 16px;
    font-weight: 500;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px;
}

.container h1 {
    color: #ffb300;
    margin-bottom: 25px;
    font-size: 38px;
}

.container h2 {
    color: #ffcc66;
    margin-top: 30px;
}

.container p,
.container li {
    color: #e4d5ff;
    font-size: 16px;
}

.container a {
    color: #ffb300;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .header {
        height: auto;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .search,
    .header-btn {
        width: 100%;
    }

    .header-buttons {
        width: 100%;
    }

    .top-hero {
        min-height: 620px;
    }

    .top-hero-content {
        padding: 28px;
    }

    .top-hero-content h1 {
        font-size: 42px;
    }

    .bonus-card {
        grid-template-columns: 1fr;
    }

    .bonus-info h2 {
        font-size: 26px;
    }

    .bonus-art {
        min-height: 260px;
    }

    .bonus-overlay-btn {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        width: auto;
        margin: 20px;
    }

    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}