@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {

    --bg-dark: #080b10;
    --bg-deep: #05070a;
    --bg-header: rgba(8, 11, 16, 0.85);


    --bg-card: rgba(30, 41, 59, 0.4);
    --bg-card-hover: rgba(30, 41, 59, 0.7);


    --primary: #00d4ff;
    --primary-hover: #00b8de;
    --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #007cf0 100%);
    --primary-glow: rgba(0, 212, 255, 0.4);

    --secondary: #334155;
    --accent-gold: #fbbf24;


    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;


    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;


    --border: 1px solid rgba(255, 255, 255, 0.08);
    --border-hover: 1px solid rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);


    --max-width: 1240px;
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;

    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 212, 255, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 124, 240, 0.03), transparent 25%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
}

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

.section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;

    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtext {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 124, 240, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 124, 240, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.full-width {
    width: 100%;
}

.site-header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.nav-list a:hover {
    color: #fff;
}

.nav-list a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 -2px 10px var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -74px;
    padding-top: 74px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.4;
    filter: saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 11, 16, 0.5) 0%, var(--bg-dark) 100%);
    z-index: -1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-disclaimer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-bar {
    background: linear-gradient(to right, var(--bg-dark), rgba(30, 41, 59, 0.2), var(--bg-dark));
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--primary);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card,
.step-item,
.operator-card,
.review-card,
.contact-form {
    background: var(--bg-card);
    border: var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover,
.operator-card:hover,
.review-card:hover {
    background: var(--bg-card-hover);
    border: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.service-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.steps-section {
    background-color: var(--bg-deep);
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    padding: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    grid-row: 1 / 3;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.step-item h3 {
    color: #fff;
    font-size: 1.5rem;
}

.step-sub {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.top-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.operator-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}


.operator-card.highlight {
    border: 1px solid var(--primary);
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.05), rgba(30, 41, 59, 0.6));
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
}

.operator-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.card-header {
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.operator-logo {
    height: 50px;
    margin: 0 auto 15px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rating span {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    display: block;
}

.stars {
    color: var(--accent-gold);
    margin-top: 5px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-info,
.payment-info {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.bonus-info:last-child {
    border-bottom: none;
}

.bonus-info h4,
.payment-info h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.bonus-info p {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.payment-info p i {
    font-size: 1.4rem;
    margin-right: 10px;
    color: var(--text-light);
}

.btn.full-width {
    margin-top: auto;
}

.card-footer {
    padding: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.compare-table th {
    background: rgba(30, 41, 59, 0.8);
    color: var(--primary);
    padding: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    text-align: left;
}

.compare-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    vertical-align: middle;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.text-success {
    color: var(--success);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.accordion-header:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header.active {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content p {
    padding: 24px;
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 30px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.security-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #ffd700;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.warning-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sec-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.sec-item i {
    color: var(--success);
}

.help-links a {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.9rem;
    margin: 0 10px;
}


.page-header {
    background: var(--bg-deep);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-status {
    margin-top: 15px;
    font-weight: 600;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.03);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}


.timeline-section {
    padding: 60px 0;
}

.timeline {
    position: relative;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    margin-left: 50px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 10px var(--primary);
}

.timeline-item .date {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.timeline-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.standards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
}

.std-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.std-item i {
    color: var(--success);
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.site-footer {
    background: #020406;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.age-limit {
    background: #fff;
    color: red;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid red;
    font-size: 0.9rem;
}




@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }


    .operator-card.highlight {
        transform: none;
        margin: 20px 0;
    }

    .operator-card.highlight:hover {
        transform: translateY(-5px);
    }

    .steps-item {
        grid-template-columns: 1fr;
    }

    .step-number {
        position: static;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(8, 11, 16, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s ease;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-list.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }


    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .standards-list {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        margin-left: 40px;
    }


    .service-card,
    .operator-card,
    .review-card,
    .step-item {
        padding: 25px;
    }
}


.page-header {
    background-color: var(--bg-deep);
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-image: radial-gradient(circle at center top, rgba(0, 212, 255, 0.05), transparent 40%);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    opacity: 0.9;
}


.page-content {
    max-width: 900px;
    margin: 80px auto;
}


.text-block {
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}


.text-block ul {
    margin: 30px 0;
    padding-left: 10px;
}

.text-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.text-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
}

.text-block ul li strong {
    color: #fff;
    font-weight: 600;
}


.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 60px 0;
}


.standards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.std-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.std-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.std-item i {
    font-size: 1.4rem;
    color: var(--success);
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}


.timeline-section {
    margin-top: 80px;
    padding: 40px;
    background: var(--bg-deep);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}


.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow);
    z-index: 2;
}

.timeline-item .date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.timeline-item h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-muted);
}


.back-link {
    margin-top: 60px;
    text-align: center;
    padding-bottom: 40px;
}


@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-content {
        margin: 40px auto;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-item::before {
        left: -34px;
        width: 14px;
        height: 14px;
    }

    .standards-list {
        grid-template-columns: 1fr;
    }
}


.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.age-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-card {
    background: var(--bg-card);
    border: 1px solid var(--primary);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.1);
}

.age-icon {
    margin-bottom: 20px;
}

.age-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--danger);
    border: 2px solid var(--danger);
    padding: 10px 15px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
}

.age-card h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.age-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

.age-sub {
    font-size: 0.85rem !important;
    opacity: 0.7;
    margin-bottom: 30px !important;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


body.no-scroll {
    overflow: hidden;
}



.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9990;
    display: flex;
    justify-content: center;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    margin-right: 30px;
    max-width: 600px;
}

.cookie-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content h3 i {
    color: var(--accent-gold);
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}



.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.cookie-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.cookie-header h3 {
    color: #fff;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-body {
    padding: 20px;
}

.cookie-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.option-info strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cookie-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #475569;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

input:disabled+.slider {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-content h3 {
        justify-content: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}