:root {

    --bg-body: #0b0f19;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.07);


    --primary: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --secondary: #8b5cf6;
    --accent-glow: rgba(59, 130, 246, 0.5);


    --text-main: #ffffff;
    --text-muted: #94a3b8;


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


    --border-radius: 16px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --backdrop: blur(12px);
    --container-width: 1240px;
}


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

body {
    background-color: var(--bg-body);

    background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}


.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

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


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

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

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

.btn-primary:hover::before {
    opacity: 1;
}

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

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--text-main);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: 0.4s ease;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

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


#hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;

    background: #0b0f19 url('../img/hero.png') center center/cover no-repeat;
    overflow: hidden;
}


#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(11, 15, 25, 1) 100%);




    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;

}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}


.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.trust-item {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: 0.3s;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

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


section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.02) 100%);
}


h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin-top: 12px;
    border-radius: 2px;
}


.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-us-box {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.why-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.why-item {
    margin-bottom: 25px;
}

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

.why-item h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: white;
}

.why-item i {
    color: var(--secondary);
}


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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}


.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}


.bookie-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    height: 100%;
}

.bookie-card:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
    transform: translateY(-5px);
}

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

.bookie-logo {
    height: 60px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.rating {
    color: var(--warning);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

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

.bonus-highlight {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px dashed rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: auto;
}

.pay-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.pay-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

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


.review-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    font-style: italic;
}

.review-card::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(59, 130, 246, 0.2);
    font-family: serif;
    line-height: 1;
}


.accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.accordion-header:hover {
    color: var(--primary);
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 10px;
    color: var(--text-muted);
    line-height: 1.7;
}

.accordion-content.active {
    padding-bottom: 25px;
}


#responsible {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
}

.rg-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.rg-tips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.rg-tip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rg-tip i {
    color: var(--danger);
}


footer {
    background: #020617;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: 0.2s;
}

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

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


@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0b0f19;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease;
        align-items: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .hamburger {
        display: block;
    }

    #hero {
        padding: 140px 0 80px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .about-grid,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .trust-item {
        white-space: nowrap;
    }

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

.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0) 0%, rgba(11, 15, 25, 1) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(59, 130, 246, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding-bottom: 80px;
}

.contact-form-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-wrapper input {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}


.info-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 24px;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.info-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.highlight-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 5px;
    display: block;
}


.locations-title {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.location-item {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--secondary);
}

.location-item h5 {
    color: white;
    margin-bottom: 2px;
    font-weight: 600;
}

.location-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}


.mini-faq {
    margin-top: 40px;
}

.faq-card {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.faq-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


.doc-header {
    padding: 140px 0 60px;
    text-align: center;
}

.doc-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.policy-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-top: 25px;
    margin-bottom: 10px;
}

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

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 10px;
}

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

.policy-content a:hover {
    color: white;
}

.text-content h2 {
    font-size: 1.5rem;
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content h3 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.text-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.text-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .policy-card {
        padding: 25px;
    }

    .doc-header {
        padding-top: 120px;
    }
}

.terms-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.terms-content h2 {
    font-size: 1.5rem;
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.terms-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.terms-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.terms-content li {
    margin-bottom: 10px;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    color: #fca5a5;
}

@media (max-width: 768px) {

    .terms-card {
        padding: 25px;
    }

    .doc-header {
        padding-top: 120px;
    }
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.cookie-table th {
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-list li i {
    color: var(--success);
}

.warning-list li i {
    color: var(--danger);
}



.content-section {
    background: var(--bg-surface);
    border: var(--glass-border);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.content-section h3 {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: justify;
}

.content-section ul {
    list-style: none;
    margin-bottom: 20px;
}

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

.content-section li i {
    margin-top: 5px;
}

.check-list li i {
    color: var(--success);
}

.warning-list li i {
    color: var(--danger);
}

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

.help-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.help-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.help-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.help-contact {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 10px;
}


.alert-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.alert-box strong {
    color: #fca5a5;
}

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

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

.age-modal-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.age-modal-overlay.active .age-modal-box {
    transform: scale(1);
}

.age-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
}

.age-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.age-text {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-verify {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-yes {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-no {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
}

.btn-no:hover {
    border-color: white;
    color: white;
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 25px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-title {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-text a {
    color: #3b82f6;
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background: #10b981;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-close {
    background: transparent;
    color: #94a3b8;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.btn-cookie-close:hover {
    color: white;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}