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


:root {

    --bg-body: #0b0e14;
    --bg-surface: #151a23;
    --bg-surface-hover: #1e2532;

    --primary: #00e5ff;
    --primary-dark: #00b8cc;
    --secondary: #ff2a6d;
    --accent: #ffcc00;

    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #2d3748;


    --grad-primary: linear-gradient(135deg, #00e5ff 0%, #0072ff 100%);
    --grad-glow: 0 0 20px rgba(0, 229, 255, 0.4);


    --container-width: 1240px;
    --header-height: 80px;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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


::selection {
    background: var(--primary);
    color: #000;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.section-header {
    text-align: center;
}

.section-subtext {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.ads-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}


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

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

.section--padded {
    padding-top: 160px;
}

.bg-darker {
    background-color: #05070a;
}

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

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--primary {
    background: var(--grad-primary);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

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

.btn--secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    color: #fff;
}

.btn--full {
    width: 100%;
}

.btn--outline {
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    margin-top: 20px;
}

.btn--outline:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}


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

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav__list {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.nav__link:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav__link:not(.btn):hover,
.nav__link.active:not(.btn) {
    color: #fff;
}

.nav__link:not(.btn):hover::after,
.nav__link.active:not(.btn)::after {
    width: 100%;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(11, 14, 20, 0.85) 0%, rgba(11, 14, 20, 0.95) 100%),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 20px;
}

.hero__content {
    max-width: 900px;
    animation: fadeInUp 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: 3rem;
    font-weight: 300;
}

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


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


.feature-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: rgba(0, 229, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}


.service-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-sub {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}

.service-icon {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


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

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-body);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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


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

.platform-card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.platform-card.popular {
    border: 1px solid var(--accent);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.05);
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #000;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.platform-logo-wrapper {
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.platform-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 8px;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
}

.bonus-list {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-grow: 1;
}

.bonus-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bonus-list li i {
    color: #10b981;
    margin-top: 4px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    justify-content: center;
}

.legal-warning {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 1rem;
    color: #555;
}


.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.payment-chip:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
}

.payment-chip i {
    font-size: 1.3rem;
    color: var(--primary);
}


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

.accordion-item {
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.accordion-header i {
    transition: transform 0.3s ease;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
    color: var(--text-muted);
    line-height: 1.7;
}


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

.review-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.review-card::after {
    content: '“';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.review-header .name {
    font-weight: 700;
    color: #fff;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
}


.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form-container {
    flex: 2;
    min-width: 320px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, var(--bg-surface) 0%, #1a202c 100%);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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


.footer {
    background: #020305;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

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

.footer__col h4 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.1rem;
}

.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;
}

.footer__copyright {
    text-align: center;
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    color: #fff;
}

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

.footer__responsible {
    border-top: 1px solid #1a202c;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

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

.age-limit {
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
}


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

.team-card {
    background: var(--bg-surface);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: #0f172a;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.role {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-5px);
    background: #fff;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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


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

    .hero__title {
        font-size: 3rem;
    }
}

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 30px;
        font-size: 1.25rem;
        align-items: flex-start;
    }

    .burger-btn {
        display: block;
        z-index: 1001;
    }

    .hero {
        min-height: auto;
        padding: 150px 20px 80px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding-left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }
}

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


.check-list {
    margin-top: 1.5rem;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition);
}

.check-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.check-list li i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.9rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}


.styled-ol {
    counter-reset: custom-counter;
    list-style: none;
    margin-top: 1.5rem;
}

.styled-ol li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
}


.styled-ol li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 34px;
    height: 34px;


    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary);
    border-radius: 50%;


    text-align: center;
    line-height: 32px;

    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}


.styled-ol li:hover::before {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    color: #fff;
}


@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {

    background: linear-gradient(145deg, var(--bg-surface) 0%, #0f1218 100%);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}


.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}


.info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    background: rgba(0, 229, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.2);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}


.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


.info-item p a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.info-item p a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}


.info-divider {
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
    opacity: 0.5;
}


.working-hours {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.working-hours h4 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.1rem;
}

.working-hours ul {
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.working-hours ul li:last-child {
    border-bottom: none;
}


.working-hours ul li:last-child {
    color: var(--secondary);
}

.legal-content {
    background: var(--bg-surface);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 40px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #fff;
    margin-top: 25px;
    font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li::marker {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
}

.alert-box {
    background: rgba(255, 42, 109, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
}

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

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

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

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

.warning-list {
    list-style: none;
    background: rgba(255, 42, 109, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.warning-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.warning-list li::before {
    content: '\f12a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary);
}


.tips-list {
    list-style: none;
    margin-top: 20px;
}

.tips-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tips-number {
    background: var(--primary);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}


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

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
}

.resource-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.resource-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.resource-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

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

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

.modal-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.4s ease-out;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(21, 26, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

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

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

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

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}


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

.cookie-option:last-of-type {
    border-bottom: none;
}

.option-info strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.option-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}


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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
}

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

.switch.disabled .slider {
    cursor: not-allowed;
    opacity: 0.6;
}

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

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

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

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
    }

    .cookie-actions {
        width: 100%;
    }

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

    .modal-card {
        padding: 25px;
    }

    .modal-actions {
        flex-direction: column;
    }
}