@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-700.woff2') format('woff2');
}

:root {
    --sc-bg-main: #12141D;
    --sc-bg-section: #171923;
    --sc-bg-card: #222534;
    --sc-bg-hover: #2A2D3D;
    --sc-text-main: #FFFFFF;
    --sc-text-muted: #808191;
    --sc-accent: #FF8C00;
    --sc-accent-hover: #FFA733;
    --sc-accent-glow: rgba(255, 140, 0, 0.25);
    --sc-badge-bg: #6C5DD3;
    --sc-border: #2A2D3D;
    --sc-border-light: rgba(255, 255, 255, 0.08);
    --sc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sc-radius-sm: 8px;
    --sc-radius-md: 12px;
    --sc-radius-lg: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--sc-bg-main);
    color: var(--sc-text-main);
    font-family: var(--sc-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-locked {
    overflow: hidden;
}

a {
    color: var(--sc-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--sc-accent-hover);
}

p a,
span a,
label a,
.streamerchoice-form-checkbox a,
.streamerchoice-contact-card a,
.streamerchoice-responsible-gaming p a,
.streamerchoice-cookie-text a,
.streamerchoice-article p a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

p a:hover,
span a:hover,
label a:hover,
.streamerchoice-form-checkbox a:hover,
.streamerchoice-contact-card a:hover,
.streamerchoice-responsible-gaming p a:hover,
.streamerchoice-cookie-text a:hover,
.streamerchoice-article p a:hover {
    color: var(--sc-accent-hover);
    text-decoration: underline;
}

.streamerchoice-nav a,
.streamerchoice-footer-nav a,
.streamerchoice-footer-legal-nav a,
.streamerchoice-game-btn,
.streamerchoice-responsible-logos a,
.streamerchoice-logo-link {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button,
input,
textarea {
    font-family: var(--sc-font);
}

.streamerchoice-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.streamerchoice-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(18, 20, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sc-border);
    padding: 16px 0;
}

.streamerchoice-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.streamerchoice-logo {
    height: 26px;
    width: auto;
    display: block;
}

.streamerchoice-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.streamerchoice-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--sc-text-main);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.streamerchoice-nav {
    display: none;
    flex-direction: column;
    background: var(--sc-bg-section);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--sc-border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.streamerchoice-nav.is-open {
    display: flex;
}

.streamerchoice-nav a {
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--sc-border);
    transition: background-color 0.2s, color 0.2s;
}

.streamerchoice-nav a:hover {
    background-color: var(--sc-bg-hover);
    color: var(--sc-accent);
}

@media (min-width: 820px) {
    .streamerchoice-menu-btn {
        display: none;
    }

    .streamerchoice-nav {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 32px;
        align-items: center;
    }

    .streamerchoice-nav a {
        padding: 6px 0;
        border: none;
        font-size: 15px;
        position: relative;
    }

    .streamerchoice-nav a:hover {
        background: transparent;
        color: var(--sc-accent);
    }

    .streamerchoice-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--sc-accent);
        transition: width 0.25s ease;
    }

    .streamerchoice-nav a:hover::after {
        width: 100%;
    }
}

.streamerchoice-hero {
    padding: 28px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.streamerchoice-hero h1 {
    margin: 0;
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
}

.streamerchoice-hero p {
    margin: 0;
    color: var(--sc-text-muted);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.streamerchoice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.streamerchoice-tag {
    background: var(--sc-badge-bg);
    color: var(--sc-text-main);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(108, 93, 211, 0.35);
}

@media (min-width: 820px) {
    .streamerchoice-hero {
        padding: 56px 20px 40px;
        text-align: center;
        align-items: center;
        gap: 16px;
    }

    .streamerchoice-hero h1 {
        font-size: 44px;
        max-width: 880px;
    }

    .streamerchoice-hero p {
        font-size: 16px;
        max-width: 780px;
        line-height: 1.6;
    }

    .streamerchoice-tags {
        justify-content: center;
        gap: 12px;
        margin-top: 8px;
    }

    .streamerchoice-tag {
        font-size: 13px;
        padding: 8px 18px;
    }
}

.streamerchoice-section {
    padding: 36px 0;
}

.streamerchoice-section.bg-alt {
    background-color: var(--sc-bg-section);
}

.streamerchoice-section-header {
    margin-bottom: 24px;
}

.streamerchoice-section-header h2 {
    margin: 0 0 12px;
    color: var(--sc-text-main);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.streamerchoice-section-header p {
    margin: 0 0 10px;
    color: var(--sc-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 820px) {
    .streamerchoice-section {
        padding: 60px 0;
    }

    .streamerchoice-section-header {
        margin-bottom: 36px;
    }

    .streamerchoice-section-header h2 {
        font-size: 30px;
    }

    .streamerchoice-section-header p {
        font-size: 15px;
    }
}

.streamerchoice-games-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.streamerchoice-game-card {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-lg);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.streamerchoice-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.streamerchoice-game-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--sc-accent);
    color: var(--sc-text-main);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.streamerchoice-game-badge.purple {
    background: var(--sc-badge-bg);
}

.streamerchoice-game-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.streamerchoice-game-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--sc-border);
}

.streamerchoice-game-info {
    flex: 1;
    padding-right: 70px;
}

.streamerchoice-game-info h2,
.streamerchoice-game-info h3 {
    margin: 0 0 4px;
    color: var(--sc-text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.streamerchoice-game-stars {
    color: var(--sc-accent);
    font-size: 13px;
    letter-spacing: 2px;
}

.streamerchoice-game-desc {
    margin: 0;
    color: var(--sc-text-muted);
    font-size: 13px;
    line-height: 1.55;
    flex-grow: 1;
}

.streamerchoice-game-btn {
    background: var(--sc-accent);
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.3);
}

.streamerchoice-game-btn:hover {
    background: var(--sc-accent-hover);
    color: var(--sc-text-main);
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.45);
    transform: translateY(-1px);
}

.streamerchoice-game-btn:active {
    transform: translateY(1px);
}

.streamerchoice-game-card--format-b .streamerchoice-game-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.streamerchoice-game-card--format-b .streamerchoice-game-top-bar h2,
.streamerchoice-game-card--format-b .streamerchoice-game-top-bar h3 {
    margin: 0;
    color: var(--sc-text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.streamerchoice-game-badge-inline {
    background: var(--sc-accent);
    color: var(--sc-text-main);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.streamerchoice-game-badge-inline.purple {
    background: var(--sc-badge-bg);
}

.streamerchoice-game-body-b {
    display: flex;
    gap: 14px;
    align-items: center;
}

.streamerchoice-game-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.streamerchoice-game-icon-col img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--sc-border);
}

.streamerchoice-game-icon-col .streamerchoice-game-stars {
    font-size: 12px;
}

@media (min-width: 820px) {
    .streamerchoice-games-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .streamerchoice-game-card {
        padding: 22px;
        gap: 14px;
    }

    .streamerchoice-game-icon {
        width: 72px;
        height: 72px;
    }

    .streamerchoice-game-icon-col img {
        width: 64px;
        height: 64px;
    }

    .streamerchoice-game-info h2,
    .streamerchoice-game-info h3,
    .streamerchoice-game-card--format-b .streamerchoice-game-top-bar h2,
    .streamerchoice-game-card--format-b .streamerchoice-game-top-bar h3 {
        font-size: 18px;
    }

    .streamerchoice-game-desc {
        font-size: 14px;
    }
}

.streamerchoice-split-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.streamerchoice-section-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--sc-radius-lg);
    border: 1px solid var(--sc-border);
}

.streamerchoice-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.streamerchoice-check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 14px 16px;
}

.streamerchoice-check-icon {
    color: var(--sc-accent);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1.4;
}

.streamerchoice-check-text {
    margin: 0;
    color: var(--sc-text-main);
    font-size: 13px;
    line-height: 1.5;
}

.streamerchoice-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.streamerchoice-step-item {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.streamerchoice-step-number {
    color: var(--sc-badge-bg);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    background: rgba(108, 93, 211, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streamerchoice-step-content h3,
.streamerchoice-step-content h4 {
    margin: 0 0 6px;
    color: var(--sc-text-main);
    font-size: 15px;
    font-weight: 700;
}

.streamerchoice-step-content p {
    margin: 0;
    color: var(--sc-text-muted);
    font-size: 13px;
    line-height: 1.55;
}

@media (min-width: 820px) {
    .streamerchoice-split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .streamerchoice-split-layout.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .streamerchoice-section-img {
        height: 340px;
    }

    .streamerchoice-check-text {
        font-size: 14px;
    }

    .streamerchoice-step-content p {
        font-size: 14px;
    }

    .streamerchoice-steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
}

.streamerchoice-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 880px;
    margin: 0 auto;
}

.streamerchoice-faq-item {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 16px 20px;
    transition: border-color 0.2s;
}

.streamerchoice-faq-item:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.streamerchoice-faq-item summary {
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.streamerchoice-faq-item summary::-webkit-details-marker {
    display: none;
}

.streamerchoice-faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--sc-accent);
    transition: transform 0.25s ease;
    font-weight: 700;
}

.streamerchoice-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.streamerchoice-faq-item p {
    margin: 12px 0 0;
    color: var(--sc-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.streamerchoice-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.streamerchoice-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.streamerchoice-contact-card {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.streamerchoice-contact-card p {
    margin: 0;
    color: var(--sc-text-main);
    font-size: 14px;
    line-height: 1.6;
}

.streamerchoice-contact-card strong {
    color: var(--sc-text-muted);
}

.streamerchoice-map {
    width: 100%;
    height: 240px;
    border: none;
    border-radius: var(--sc-radius-md);
    border: 1px solid var(--sc-border);
}

.streamerchoice-form {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.streamerchoice-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.streamerchoice-form-group label {
    color: var(--sc-text-main);
    font-size: 13px;
    font-weight: 700;
}

.streamerchoice-form-control {
    background: var(--sc-bg-main);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-sm);
    padding: 12px 14px;
    color: var(--sc-text-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.streamerchoice-form-control:focus {
    border-color: var(--sc-accent);
    box-shadow: 0 0 0 3px var(--sc-accent-glow);
}

.streamerchoice-form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--sc-text-muted);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.streamerchoice-form-checkbox input {
    margin-top: 2px;
    accent-color: var(--sc-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.streamerchoice-form-submit {
    background: var(--sc-accent);
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 14px;
    padding: 14px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.3);
}

.streamerchoice-form-submit:hover {
    background: var(--sc-accent-hover);
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.45);
    transform: translateY(-1px);
}

.streamerchoice-form-feedback {
    display: none;
    background: rgba(108, 93, 211, 0.2);
    border: 1px solid var(--sc-badge-bg);
    color: var(--sc-text-main);
    padding: 14px;
    border-radius: var(--sc-radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

@media (min-width: 820px) {
    .streamerchoice-contact-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: flex-start;
    }

    .streamerchoice-form {
        padding: 32px;
        gap: 20px;
    }

    .streamerchoice-map {
        height: 280px;
    }
}

.streamerchoice-footer {
    background: var(--sc-bg-section);
    padding: 48px 0 32px;
    border-top: 1px solid var(--sc-border);
}

.streamerchoice-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.streamerchoice-footer-logo {
    height: 24px;
    width: auto;
}

.streamerchoice-footer-nav,
.streamerchoice-footer-legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.streamerchoice-footer-nav a {
    color: var(--sc-text-main);
    font-size: 14px;
    font-weight: 700;
}

.streamerchoice-footer-legal-nav {
    border-top: 1px solid var(--sc-border);
    border-bottom: 1px solid var(--sc-border);
    padding: 16px 0;
    width: 100%;
}

.streamerchoice-footer-legal-nav a {
    color: var(--sc-text-muted);
    font-size: 13px;
}

.streamerchoice-footer-legal-nav a:hover,
.streamerchoice-footer-nav a:hover {
    color: var(--sc-accent);
}

.streamerchoice-footer-disclaimer {
    margin: 0;
    color: var(--sc-text-muted);
    font-size: 12px;
    line-height: 1.65;
    text-align: left;
    max-width: 960px;
}

.streamerchoice-responsible-gaming {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 20px;
    width: 100%;
    max-width: 960px;
    box-sizing: border-box;
    text-align: left;
}

.streamerchoice-responsible-gaming h3,
.streamerchoice-responsible-gaming h4 {
    margin: 0 0 8px;
    color: var(--sc-text-main);
    font-size: 14px;
    font-weight: 700;
}

.streamerchoice-responsible-gaming p {
    margin: 0;
    color: var(--sc-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.streamerchoice-responsible-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    font-size: 13px;
}

.streamerchoice-responsible-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.streamerchoice-responsible-logos img {
    height: 24px;
    width: auto;
    filter: brightness(0.95);
}

.streamerchoice-footer-bottom {
    color: var(--sc-text-muted);
    font-size: 12px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--sc-border);
    padding-top: 20px;
}

@media (min-width: 820px) {
    .streamerchoice-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .streamerchoice-footer-address {
        text-align: left;
    }
}

.streamerchoice-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(10, 12, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.streamerchoice-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.streamerchoice-game-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    z-index: 9999;
    width: 95%;
    max-width: 1080px;
    height: 86vh;
    max-height: 740px;
    background: var(--sc-bg-section);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-lg);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.streamerchoice-game-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.streamerchoice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--sc-bg-card);
    border-bottom: 1px solid var(--sc-border);
}

.streamerchoice-modal-title {
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.streamerchoice-modal-close {
    background: transparent;
    border: none;
    color: var(--sc-text-muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--sc-radius-sm);
    transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

.streamerchoice-modal-close:hover {
    color: var(--sc-text-main);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.streamerchoice-modal-body {
    flex: 1;
    position: relative;
    background: #000000;
    width: 100%;
    height: 100%;
}

.streamerchoice-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.streamerchoice-modal-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--sc-bg-section);
    color: var(--sc-text-muted);
    font-size: 14px;
    z-index: 2;
}

.streamerchoice-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 140, 0, 0.2);
    border-top-color: var(--sc-accent);
    border-radius: 50%;
    animation: sc-spin 0.8s linear infinite;
}

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

.streamerchoice-age-gate-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.streamerchoice-age-gate-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.streamerchoice-age-gate-card {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.streamerchoice-age-gate-modal.is-open .streamerchoice-age-gate-card {
    transform: scale(1);
}

.streamerchoice-age-gate-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.15);
    border: 2px solid var(--sc-accent);
    color: var(--sc-accent);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streamerchoice-age-gate-card h2 {
    margin: 0;
    color: var(--sc-text-main);
    font-size: 22px;
    font-weight: 700;
}

.streamerchoice-age-gate-card p {
    margin: 0;
    color: var(--sc-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.streamerchoice-age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.streamerchoice-btn-confirm {
    background: var(--sc-accent);
    color: var(--sc-text-main);
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.35);
}

.streamerchoice-btn-confirm:hover {
    background: var(--sc-accent-hover);
    transform: translateY(-1px);
}

.streamerchoice-btn-exit {
    background: transparent;
    border: 1px solid var(--sc-border);
    color: var(--sc-text-muted);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 24px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.streamerchoice-btn-exit:hover {
    color: var(--sc-text-main);
    border-color: var(--sc-text-muted);
}

.streamerchoice-age-error {
    display: none;
    background: rgba(227, 6, 19, 0.2);
    border: 1px solid #e30613;
    color: #ffb4ab;
    padding: 12px;
    border-radius: var(--sc-radius-sm);
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
}

.streamerchoice-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 540px;
    margin: 0 auto;
    z-index: 15000;
    background: rgba(34, 37, 52, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-lg);
    padding: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.streamerchoice-cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.streamerchoice-cookie-text {
    margin: 0;
    color: var(--sc-text-main);
    font-size: 13px;
    line-height: 1.55;
}

.streamerchoice-cookie-actions {
    display: flex;
    gap: 10px;
}

.streamerchoice-cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: background-color 0.2s, color 0.2s;
}

.streamerchoice-cookie-btn--accept {
    background: var(--sc-accent);
    color: var(--sc-text-main);
}

.streamerchoice-cookie-btn--accept:hover {
    background: var(--sc-accent-hover);
}

.streamerchoice-cookie-btn--decline {
    background: var(--sc-bg-main);
    border: 1px solid var(--sc-border);
    color: var(--sc-text-muted);
}

.streamerchoice-cookie-btn--decline:hover {
    color: var(--sc-text-main);
    border-color: var(--sc-text-muted);
}

.streamerchoice-article {
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 15px;
    color: var(--sc-text-main);
}

.streamerchoice-article h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--sc-text-main);
}

.streamerchoice-article-date {
    margin: 0 0 24px;
    color: var(--sc-text-muted);
    font-size: 13px;
}

.streamerchoice-article h2 {
    font-size: 19px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--sc-accent);
}

.streamerchoice-article p {
    margin: 0 0 14px;
    color: var(--sc-text-main);
    line-height: 1.7;
}

.streamerchoice-article-box {
    background: var(--sc-bg-card);
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius-md);
    padding: 20px;
    margin: 24px 0;
}

@media (min-width: 820px) {
    .streamerchoice-article h1 {
        font-size: 34px;
    }

    .streamerchoice-article h2 {
        font-size: 21px;
    }
}
