@font-face {
    font-family: 'Helvetica Now Display';
    src: url('assets/fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('assets/fonts/HelveticaNowDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #1b1b1b;
}

body {
    font-family: 'Helvetica Now Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
}

.background-zone {
    background-image: url('assets/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    color: #fcc709;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 30px;
}

.text-white {
    color: #ffffff;
}

.text-yellow {
    color: #fcc709;
}

.header-bar {
    background: #1b1b1b;
    padding: 50px 30px;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    width: 220px;
    height: auto;
    margin: 0 auto;
}

.header-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    height: 40px;
    padding-right: 15px;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-header:hover {
    opacity: 0.85;
    transform: scale(1.06);
}

.btn-login {
    background: #fcc709;
    color: white;
}

.btn-signup {
    background: #000;
    color: #fff;
}

.btn-icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 40px;
    border-radius: 25px 0 0 25px;
    flex-shrink: 0;
}

.btn-icon-login {
    background: #a38311;
    color: white;
}

.btn-icon-signup {
    background: #535353;
    color: #fff;
}

.hero {
    background: url('assets/hero-bg.png') no-repeat center top;
    background-size: 100% auto;
    aspect-ratio: 1920 / 900;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -2px;
}

.hero-content {
    max-width: 90vw;
    padding-right: 35vw;
}

.hero h1 {
    font-size: 4.2vw;
    font-weight: 800;
    line-height: 1.15;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.35vw;
    color: #000000;
    margin-top: 1.5vw;
    line-height: 1.6;
    font-weight: 500;
    max-width: 35vw;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fcc709;
    color: #000;
    font-size: 28px;
    font-weight: 800;
    padding: 22px 50px;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(252, 199, 9, 0.3);
}

.btn-hero {
    margin-top: 2.5vw;
    font-size: 1.5vw;
    padding: 1.1vw 2.6vw;
    border-radius: 3vw;
    gap: 0.8vw;
    background: black;
    color: white;
}

.btn-arrow {
    width: 20px;
    height: 28px;
    flex-shrink: 0;
}

.social-media {
    padding: 50px 0 40px;
    text-align: center;
}

.social-media-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fcc709;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.social-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-single {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    transition: transform 0.2s;
}

.social-link-single:hover {
    transform: scale(1.1);
}

.social-link-single img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categories {
    padding: 60px 0 40px;
}

.categories-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 50px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.category-card {
    width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s;
}

.category-card:hover,
.bonus-card:hover {
    transform: scale(1.08);
}

.category-img {
    width: 100%;
    height: 310px;
    border-radius: 16px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fcc709;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 30px;
    border-radius: 20px;
    margin-top: 10px;
}

.category-badge img {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.btn-join {
    font-size: 1.2rem;
    padding: 10px 30px;
    outline: 2px solid rgba(255, 255, 255, 1);
    outline-offset: 14px;
}

.game-showcase {
    overflow: hidden;
    background-image: url('assets/panteon_background.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    margin-top: 30px;
}

.game-showcase-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
}

.game-char {
    width: 33%;
    max-width: 500px;
    height: auto;
    display: block;
}

.bonuses {
    padding: 80px 0 60px;
}

.bonuses-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bonuses-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgb(255, 255, 255);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.bonus-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bonus-card {
    width: 380px;
    text-align: center;
    transition: transform 0.2s;
}

.bonus-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 20px;
}

.bonus-card-label {
    display: inline-block;
    background: linear-gradient(180deg, #fcc70919 10%, #d4a800 100%);
    color: white;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 25px;
    margin-top: 14px;
}

.faq {
    padding: 70px 0;
}

.faq-container {
    max-width: 700px;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
}

.faq-triangle {
    color: rgba(255, 255, 255, .2);
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 3px;
}

.faq-answer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-left: 24px;
}

.faq-connector {
    color: rgba(255, 255, 255, .2);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    align-self: stretch;
}

.faq-answer-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    background: #070707;
}

.footer {
    padding: 80px 0 50px;
}

.footer-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-links-limit {
    display: flex;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: #171717;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    transition: background 0.2s;
}

.footer-link-item:hover {
    background: #222;
}

.footer-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: #090909;
    flex-shrink: 0;
}

.footer-link-icon img {
    display: inline-block;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-col {
    flex: 1;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: #070707;
}

.footer-col-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-col-header-left {
    flex: 1;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-badge {
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 1.7;
}

.footer-contact p {
    font-size: 13px;
    color: rgb(255, 255, 255);
    line-height: 2;
}

.footer-contact strong {
    color: rgb(255, 255, 255);
    font-weight: 500;
    display: inline-block;
    min-width: 70px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin: 16px 0;
}

.footer-age {
    font-size: 12px;
    color: rgb(255, 255, 255);
    line-height: 1.7;
}

@media (max-width: 700px) {
    .header-inner {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-bar {
        padding: 30px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .footer-link-item {
        padding: 10px 10px;
        font-size: 10px;
    }

    .bonuses-title,
    .categories-title {
        font-size: 2rem;
    }

    .social-media-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .social-link-single {
        width: 120px;
        height: 120px;
    }

    .hero {
        min-height: 350px;
        background-size: cover;
        background-position: 72% center;
        aspect-ratio: auto;
    }

    .hero-content {
        max-width: 54vw;
        padding-right: 0;
        text-align: left;
        padding-left: 5vw !important;
        margin-left: 0;
        padding-top: 6vh;
    }

    .hero h1 {
        font-size: 6vw;
        line-height: 1.15;
        margin-bottom: 2.5vw;
        color: #000000;
    }

    .hero-subtitle {
        font-size: 2.8vw;
        color: #000000;
        max-width: 50vw;
        line-height: 1.5;
        margin-top: 2.5vw;
        font-weight: 500;
    }

    .btn-hero {
        font-size: 3.5vw;
        padding: 2.3vw 4.5vw;
        margin-top: 3.5vw;
    }

    .btn-hero img {
        width: 2.8vw;
        margin-right: 2px;
    }

    .footer-columns {
        flex-direction: column;
    }

    .bonus-card {
        width: 100%;
    }

    .bonuses-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 430px) and (min-height: 800px) {
    .hero {
        min-height: 450px;
        background-position: 68% center;
    }

    .hero-content {
        max-width: 56vw;
        padding-left: 6vw !important;
        padding-top: 8vh;
    }

    .hero h1 {
        font-size: 6.5vw;
        color: #000000;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 3vw;
    }

    .hero-subtitle {
        font-size: 3vw;
        color: #000000;
        max-width: 52vw;
        line-height: 1.55;
        margin-top: 3vw;
    }

    .btn-hero {
        font-size: 3.8vw;
        padding: 2.5vw 5vw;
        margin-top: 4.5vw;
    }

    .btn-hero img {
        width: 3vw;
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 5.8vw;
    }

    .hero-subtitle {
        font-size: 2.6vw;
        max-width: 48vw;
    }

    .btn-hero {
        font-size: 3.3vw;
        padding: 2.2vw 4.3vw;
    }
}

