* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-accent: #2ec4b6;
    --color-accent-hover: #26ad9f;
    --color-accent-strong: #1a8f83;
    --color-nav-accent: #a8ebe4;
    --color-white-btn-hover-bg: #e5f9f6;
    --overlay-accent-05: rgba(46, 196, 182, 0.05);
    --overlay-accent-15: rgba(46, 196, 182, 0.15);
    --overlay-accent-20: rgba(46, 196, 182, 0.2);
    --overlay-accent-25: rgba(46, 196, 182, 0.25);
    --color-success-border: #5eead4;
    --color-success-bg: rgba(94, 234, 212, 0.18);
    --color-success-text: #ccfbf1;
    --color-game-chamfer: #0f2c32;
    --color-disclaimer-from: rgba(12, 38, 44, 0.94);
    --color-disclaimer-to: rgba(18, 58, 56, 0.88);
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: url('../media/bg-section.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    line-height: 1.4;
}


.st_container {
    max-width: 1170px;
    width: 99%;
    margin: 0 auto;
    padding: 0 15px;
}

.st_disclaimer-banner {
    width: 100%;
    background: linear-gradient(180deg, var(--color-disclaimer-from) 0%, var(--color-disclaimer-to) 100%);
    border-bottom: 4px solid var(--color-accent);
    padding: clamp(18px, 3vw, 28px) 0 clamp(22px, 3.5vw, 32px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.st_disclaimer-inner {
    text-align: center;
}

.st_disclaimer-headline {
    font-family: 'Saira', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.st_disclaimer-copy {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
    max-width: 980px;
    margin: 0 auto;
}


h1,
h2,
h3,
h4,
.st_logo-text,
.st_title-font {
    font-family: 'Saira', sans-serif;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
}

p,
li,
a,
.st_text,
.st_stat-text {
    font-family: 'Roboto', sans-serif;
    color: #fff;
}


a {
    text-decoration: none;
    transition: 0.25s ease;
}

.st_btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
    font-family: 'Saira', sans-serif;
    letter-spacing: 0.5px;
}

.st_btn-white {
    background: #fff;
    color: var(--color-accent);
}

.st_btn-white:hover {
    background: var(--color-white-btn-hover-bg);
    color: var(--color-accent-strong);
}

.st_btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}


.st_block-bg {
    background: var(--overlay-accent-05);
    backdrop-filter: blur(1px);
}


.st_header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.st_logo-area {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 3px;
}

.st_logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-top: -3px;
}

.st_brand {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Saira', sans-serif;
    letter-spacing: 1px;
}

.st_nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.st_nav a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.st_nav a:hover {
    color: var(--color-nav-accent);
}

.st_menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
    background: none;
    color: white;
}

.st_get-btn {
    background: var(--color-accent);
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    margin-left: 10px;
}

.st_get-btn:hover {
    background: var(--color-accent-hover);
}


.st_banner {
    background-image: url('../media/large.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin: 0px 0 30px;
}

.st_banner-content {
    max-width: 60%;
}

.st_banner-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.st_banner-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.st_btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.st_stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.st_stat-item {
    flex: 1;
    background: var(--overlay-accent-05);
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.st_stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Saira', sans-serif;
    line-height: 1;
}

.st_stat-desc {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.st_about {
    text-align: center;
    margin: 70px 0;
}

.st_section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.st_about-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 18px auto;
}


.st_game-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.st_game-col {
    flex: 1;
    min-width: 260px;
}

.st_game-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.st_game-desc {
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 1rem;
}

.st_game-img {
    width: 100%;
    max-width: 540px;
    display: block;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

.st_reverse {
    flex-direction: row-reverse;
}


.st_cta {
    background-image: url('../media/main-bg.png');
    background-size: cover;
    background-position: center;
    padding: 75px 0;
    margin: 70px 0;
}

.st_cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.st_cta-left {
    max-width: 60%;
}

.st_cta-left h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.st_cta-left p {
    font-size: 1.1rem;
    line-height: 1.5;
}


.st_footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 0 30px;
    margin-top: 30px;
    text-align: center;
}

.st_footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.st_footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.st_footer-links {
    display: flex;
    justify-content: center;
    gap: 14px 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.st_footer-links a {
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}

.st_footer-links a:hover {
    border-bottom-color: var(--color-accent);
}

.st_footer-highlight p {
    margin: 10px 0;
}

.st_footer-highlight {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    background: var(--overlay-accent-20);
    display: inline-block;
    padding: 8px 28px;
    border-radius: 0;
}

.st_copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}


.st_contact-section {
    padding: 60px 0;
}

.st_contact-container {
    max-width: 1170px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.st_contact-header {
    margin-bottom: 48px;
}

.st_contact-title {
    font-family: 'Saira', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.st_breadcrumbs {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.st_breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.st_breadcrumbs a:hover {
    color: var(--color-accent);
}

.st_breadcrumbs span {
    margin: 0 6px;
}

.st_contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.st_contact-info {
    flex: 1;
    min-width: 240px;
}

.st_contact-form-wrapper {
    flex: 1.5;
    min-width: 280px;
    background: var(--overlay-accent-05);
    padding: 32px 30px;
}

.st_info-card {
    background: var(--overlay-accent-05);
    padding: 28px 24px;
    margin-bottom: 30px;
}

.st_info-label {
    font-family: 'Saira', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.st_info-email {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    word-break: break-all;
    color: #fff;
}

.st_info-email a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.st_info-email a:hover {
    border-bottom-color: var(--color-accent);
}

.st_info-desc {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.st_form-group {
    margin-bottom: 24px;
}

.st_form-group input,
.st_form-group textarea,
.st_form-group select {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: 0.2s;
}

.st_form-group input:focus,
.st_form-group textarea:focus,
.st_form-group select:focus {
    border-color: var(--color-accent);
}

.st_form-group input::placeholder,
.st_form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.st_form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Saira', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.st_submit-btn {
    background: var(--color-accent);
    border: none;
    padding: 14px 32px;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}

.st_submit-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.st_thanks-message {
    margin-top: 20px;
    padding: 14px;
    background: var(--color-success-bg);
    border-left: 4px solid var(--color-success-border);
    font-family: 'Roboto', sans-serif;
    color: var(--color-success-text);
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .st_contact-title {
        font-size: 2rem;
    }

    .st_contact-grid {
        flex-direction: column;
    }

    .st_contact-form-wrapper {
        padding: 24px 20px;
    }
}


.st_legal-container {
    max-width: 1170px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 20px 80px;
}


.st_legal-header {
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.st_legal-title {
    font-family: 'Saira', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.st_breadcrumbs {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.st_breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.st_breadcrumbs a:hover {
    color: var(--color-accent);
}

.st_breadcrumbs span {
    margin: 0 6px;
}


.st_legal-content {
    background: var(--overlay-accent-05);
    padding: 48px 52px;
}

.st_legal-section {
    margin-bottom: 32px;
}

.st_legal-section:last-child {
    margin-bottom: 0;
}

.st_legal-subtitle {
    font-family: 'Saira', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 28px;
}

.st_legal-subtitle:first-of-type {
    margin-top: 0;
}

.st_legal-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
}

.st_legal-list {
    margin-left: 28px;
    margin-bottom: 20px;
}

.st_legal-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
}

.st_legal-highlight {
    background: var(--overlay-accent-25);
    padding: 18px 24px;
    border-left: 4px solid var(--color-accent);
    margin: 24px 0;
}

.st_legal-date {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

.st_contact-email {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--overlay-accent-15);
    text-align: center;
    border-radius: 0;
}

.st_contact-email a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--color-accent);
}

.st_contact-email a:hover {
    color: var(--color-accent);
}


@media (max-width: 768px) {
    .st_legal-title {
        font-size: 2rem;
    }

    .st_legal-content {
        padding: 28px 20px;
    }

    .st_legal-subtitle {
        font-size: 1.3rem;
    }
}






































@media (max-width: 992px) {
    .st_banner-content {
        max-width: 80%;
    }

    .st_banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .st_menu-icon {
        display: block;
    }

    .st_nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 85px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        transition: 0.3s;
        z-index: 999;
        gap: 30px;
    }

    .st_nav.st_active {
        left: 0;
    }

    .st_nav a {
        font-size: 1.3rem;
    }

    .st_get-btn {
        margin-left: 0;
    }

    .st_stats {
        flex-direction: column;
    }

    .st_banner-content {
        max-width: 100%;
    }

    .st_game-row {
        flex-direction: column;
        text-align: center;
    }

    .st_reverse {
        flex-direction: column;
    }

    .st_cta-left {
        max-width: 100%;
        text-align: center;
    }

    .st_cta-inner {
        justify-content: center;
        text-align: center;
    }

    .st_btn-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .st_banner-title {
        font-size: 1.9rem;
    }

    .st_section-title {
        font-size: 2rem;
    }

    .st_brand {
        font-size: 1.2rem;
    }

    .st_banner-content {
        text-align: center;
    }

    .st_footer {
        margin-top: 0;
    }

    .st_cta {
        margin-bottom: 40px;
    }
    .st_contact-grid{
        gap: 30px;
    }
}

img {
    display: block;
}