:root {
    --bg-dark: #090c10;
    --bg-gradient: linear-gradient(180deg, #0f172a 0%, #090c10 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.5);
    --secondary: #94a3b8;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --gold: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.4);
    --danger: #ef4444;
    --success: #10b981;
    --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 242, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(76, 29, 149, 0.15), transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
    transform: skewX(-20deg);
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    width: 150%;
}

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

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-full {
    width: 100%;
}

.section {
    padding: 100px 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--primary);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-link {
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    background: rgba(0, 242, 255, 0.1);
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 12, 16, 0.6) 0%, rgba(9, 12, 16, 0.9) 60%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 25px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

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

.about-content p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-subblocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.subblock {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.subblock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.ad-note {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.bookmakers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bm-card {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    background: linear-gradient(145deg, rgba(25, 30, 40, 0.9), rgba(15, 20, 25, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.bm-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.bm-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.15);
}

.bm-col-identity {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.bm-logo img {
    max-height: 55px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.bm-rating {
    text-align: center;
}

.bm-rating .score {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.bm-rating .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 5px;
}

.bm-col-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bm-tagline {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.bm-bonus-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bm-bonus-box.highlight {
    background: rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.2);
}

.bonus-badge {
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bm-bonus-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.bm-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: #111;
    border: 1px solid #333;
    color: #999;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bm-col-action {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
}

.btn-wide {
    width: 100%;
    justify-content: space-between;
}

.terms-text {
    margin-top: 10px;
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
}

@media (max-width: 900px) {
    .bm-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bm-col-identity {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
    }

    .bm-rating {
        text-align: right;
    }

    .bm-col-action {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding: 20px;
    }

    .btn-wide {
        justify-content: center;
        gap: 10px;
    }
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary);
    color: #000;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.bm-header {
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--glass-border);
}

.bm-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.bm-rating .score {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.bm-rating .stars {
    color: var(--gold);
    font-size: 0.8rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

.bm-subtitle {
    margin: 30px 30px 15px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.bm-bonus {
    margin: 0 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.bm-bonus h4 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.9rem;
}

.bm-bonus p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.bm-bonus small {
    display: block;
    margin-top: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bm-payments {
    margin: 0 30px 30px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    background: #000;
    border: 1px solid #333;
    color: #aaa;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
}

.bm-card>.btn {
    margin: 30px;
    align-self: center;
    justify-self: center;
    min-width: 160px;
}

.disclaimer-small {
    text-align: center;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

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

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

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: 0;
    top: -10px;
    z-index: 0;
}

.step-note {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--primary);
    font-style: italic;
}

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

.timeline-content p {
    color: var(--secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.cat-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.cat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.cat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bonus-content p {
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tip-card {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.tip-card i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.pay-chip {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.pay-chip:hover {
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.payment-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.resp-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.resp-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.resp-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.resp-btn {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 0.9rem;
}

.warning-text {
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 700;
    margin-top: 15px;
    border: 1px solid var(--danger);
    background: rgba(220, 38, 38, 0.05);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
}

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

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: transparent;
    color: #fff;
    padding: 20px 25px;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

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

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
}

.accordion-content p {
    padding: 20px 25px;
    color: var(--secondary);
    margin: 0;
}

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

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.footer {
    background: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.brand-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.social-box {
    display: flex;
    gap: 12px;
}

.social-box a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-box a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.footer-compliance {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.compliance-badges {
    display: flex;
    align-items: center;
    gap: 30px;
}

.badge-18 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--danger);
    border: 3px solid var(--danger);
    padding: 5px 10px;
    border-radius: 8px;
    line-height: 1;
}

.compliance-text {
    flex: 1;
}

.compliance-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.compliance-partners {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    color: #334155;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #475569;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-box {
        justify-content: center;
    }

    .compliance-badges {
        flex-direction: column;
        text-align: center;
    }
}

.disclaimer {
    margin-bottom: 15px;
    opacity: 0.8;
}

.age-limit {
    color: var(--danger);
    font-weight: bold;
    border: 1px solid var(--danger);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

@media (max-width: 1024px) {
    .bm-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        padding-bottom: 30px;
    }

    .bm-header {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 20px;
    }

    .bm-subtitle,
    .bm-bonus,
    .bm-payments {
        margin: 20px;
    }

    .bm-payments {
        justify-content: center;
    }

    .bm-card>.btn {
        margin: 0 0 30px 0;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(9, 12, 16, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

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

    .btn {
        width: 100%;
    }

    .trust-grid {
        gap: 30px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .about-subblocks {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

.legal-content {
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.legal-box h1 {
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-box h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #fff;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.legal-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-box ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-box ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    list-style-type: square;
}

.last-updated {
    font-style: italic;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.highlight-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 20px;
    border-radius: var(--radius-sm);
    color: #fff;
    margin-bottom: 30px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--glass-border);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
}

.info-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 25px;
    border-radius: var(--radius-sm);
    margin: 30px 0;
}

.info-card h3 {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i {
    color: var(--danger);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checklist li i {
    color: var(--success);
    margin-top: 5px;
}

.help-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.warning-strip {
    background: var(--danger);
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: 900;
    border-radius: 4px;
    margin-bottom: 30px;
}

.legal-box ul {
    list-style: none;
    padding-left: 0;
}

.legal-box ul li {
    margin-bottom: 12px;
}

.legal-box ul li a {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.legal-box ul li a i {
    font-size: 1.1rem;
    width: 20px;
}

.legal-box ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}