
:root {
    --bg: #020604;
    --bg-elevated: #07120a;
    --bg-card: #08150c;
    --text-main: #f5fff8;
    --text-muted: #b9d0c0;
    --accent: #2ad56b; /* green */
    --accent-soft: rgba(42, 213, 107, 0.4);
    --accent-alt: #f4f064; /* yellow */
    --border-subtle: #1d3522;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-soft: 0 0 40px rgba(0, 0, 0, 0.75);
    --max-width: 1160px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #163824 0%, #020604 60%, #000000 100%);
    color: var(--text-main);
    line-height: 1.6;
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(1,7,4,0.97), rgba(1,7,4,0.9));
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-main);
}

.logo-main {
    color: #ffffff;
}

.logo-highlight {
    color: var(--accent-alt);
    margin-left: 4px;
    text-shadow: 0 0 12px rgba(244, 240, 100, 0.7);
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-left: 22px;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-main);
}

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

/* Hero */

.hero {
    position: relative;
    padding: 80px 0 72px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(42, 213, 107, 0.25), transparent 60%),
        radial-gradient(circle at 0% 0%, rgba(244, 240, 100, 0.25), transparent 50%);
    opacity: 0.95;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero .eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.24em;
    color: var(--accent-alt);
    margin-bottom: 10px;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
}

.hero h1 .hero-faded {
    color: rgba(245, 255, 248, 0.18);
    text-shadow: 0 0 30px var(--accent-soft);
    letter-spacing: 0.06em;
}

.hero-subtitle {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 15px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    box-shadow: 0 0 22px rgba(42, 213, 107, 0.85);
    color: #01210b;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(42, 213, 107, 1);
}

.btn-outline {
    border-color: rgba(245,255,248,0.25);
    background: rgba(5,10,6,0.8);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: #fff;
}

.btn-secondary {
    background: #041008;
    border-color: rgba(245,255,248,0.2);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--accent-alt);
}

.hero-warning {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Operators section */

.operators-section {
    padding: 24px 0 72px;
}

.operators-section h2 {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 0 6px;
    letter-spacing: 0.12em;
}

.operators-section h2 .outline {
    -webkit-text-stroke: 1px #e9fff0;
    color: transparent;
}

.operators-section h2 .neon {
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-soft);
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.operator-card {
    position: relative;
    margin: 22px auto;
    max-width: 960px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(42,213,107,0.22), transparent 60%);
    padding: 1px;
}

.operator-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        0 0 40px rgba(42,213,107,0.7),
        0 0 2px rgba(255,255,255,0.06);
    opacity: 0.45;
    pointer-events: none;
}

.operator-inner {
    position: relative;
    border-radius: inherit;
    background: radial-gradient(circle at top, #10241a, #020604);
    padding: 32px 28px 30px;
    box-shadow: var(--shadow-soft);
}

.operator-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.operator-logo img {
    max-width: 220px;
    height: auto;
}

.operator-text {
    text-align: center;
    margin: 0 0 12px;
    color: var(--text-main);
}

.operator-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232,255,241,0.25);
    background: rgba(4,14,8,0.9);
    color: var(--text-muted);
}

.operator-offer {
    background: #06140b;
    border-radius: 16px;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.operator-offer .operator-responsible {
    margin-top: 4px;
    color: #e6f79b;
    font-size: 12px;
}

.operator-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.operator-licence {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.operator-licence .btn {
    margin-top: 8px;
    font-size: 13px;
}

/* Responsible section */

.responsible-section {
    padding: 64px 0 92px;
    border-top: 1px solid rgba(232,255,241,0.08);
    background: radial-gradient(circle at top, #173b25, #020604 55%, #000000 100%);
}

.responsible-heading {
    text-align: center;
    margin-bottom: 26px;
}

.responsible-heading h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.responsible-heading h2 span:first-child {
    font-weight: 700;
}

.responsible-heading h2 .neon {
    color: var(--accent-alt);
    text-shadow: 0 0 12px rgba(244,240,100,0.8);
}

.responsible-heading p {
    margin: 6px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.support-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    margin-bottom: 26px;
}

.support-logos img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.8));
}

.responsible-panel {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #041007;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid var(--accent-soft);
    box-shadow: 0 0 34px rgba(0,0,0,0.9);
    margin-bottom: 20px;
}

.panel-icon img {
    width: 44px;
    height: 44px;
}

.panel-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.panel-content p {
    margin: 0 0 4px;
    font-size: 14px;
}

.panel-18plus {
    margin-top: 8px;
    color: #e6f79b;
}

.responsible-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 10px;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.highlight-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Content pages */

.content-page {
    padding: 64px 0 96px;
}

.content-page h1 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 16px;
}

.content-page h2 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.content-page p,
.content-page li {
    font-size: 14px;
    color: var(--text-muted);
}

.content-page ul {
    padding-left: 20px;
}

.narrow {
    max-width: 760px;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-main);
}

.legal-disclaimer {
    margin-top: 22px;
    font-size: 12px;
    color: #e6f79b;
    border-top: 1px dashed rgba(232,255,241,0.25);
    padding-top: 10px;
}

/* Footer */

.site-footer {
    background: #010604;
    border-top: 1px solid rgba(232,255,241,0.12);
    padding: 24px 0 30px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 16px;
}

.footer-nav a:hover {
    color: var(--text-main);
}

.footer-note {
    margin: 0;
    text-align: center;
}

/* Responsive */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .main-nav a {
        margin-left: 0;
    }

    .operator-inner {
        padding: 22px 18px 22px;
    }

    .responsible-panel {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-nav a {
        margin-left: 0;
    }
}
