/* Base styles */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Regular.ttf') format('truetype'); /* Укажите правильный путь к файлу */
    font-weight: 400; /* Нормальная жирность */
    font-style: normal; /* Обычный стиль */
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Black.ttf') format('truetype'); /* Если у вас есть жирный шрифт */
    font-weight: 700; /* Жирный */
    font-style: normal;
}


:root {
    --primary-color: #4dcdff; /* Основной цвет - синий */
    --secondary-color: #4df3ff; /* Вторичный цвет - светло-голубой */
    --text-color: #ffffff; /* Цвет текста - чёрный */
    --background-color: #0e0c48; /* Фон - светло-голубой (почти белый) */
    --accent-color: #1efff4; /* Акцентный цвет - яркий синий */
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Particle canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Background shapes */
.background-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    mix-blend-mode: screen;
}

.blob-1 {
    top: -10%;
    left: -10%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    animation: blob-move 25s infinite alternate;
}

.blob-2 {
    top: 60%;
    right: -10%;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    animation: blob-move 30s infinite alternate-reverse;
}

.blob-3 {
    bottom: -10%;
    left: 50%;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    animation: blob-move 35s infinite alternate;
}

@keyframes blob-move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 100;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
}

/* Header and Navigation styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin-left: auto;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: block; /* Ensure consistent block display */
}

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

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

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        text-align: center; /* Center align text in mobile view */
    }

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

    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}


.burger {
    display: none;
    z-index: 100;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {

    .burger {
        display: block;
        cursor: pointer;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-7px, 6px);
        background-color: var(--primary-color);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-7px, -6px);
        background-color: var(--primary-color);
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Main content styles */
main {
    padding-top: 80px;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

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

/* Logo styles */
.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
}

.logo-glow {
    position: absolute;
    inset: -10px;
    border-radius: 10%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(20px);
    opacity: 0.6;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    z-index: 1;
}

/* Title styles */
.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

/* Subtitle styles */
.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Button styles */

/* Update CTA Button styles */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

/* Responsive styles for CTA buttons */
@media screen and (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }
}


/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { transform: translate(-50%, 10px); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Features section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* How to Play section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Testimonials section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer styles */
footer {
    background: rgba(26, 26, 26, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.footer-logo-image {
    width: 50px;
    margin-right: 1rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .footer-links {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

/* Selection style */
::selection {
    background: var(--primary-color);
    color: var(--text-color);
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

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

/* Age Confirmation Pop-up styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 1.5rem;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.popup-buttons button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 77, 77, 0.3);
}

#age-notification {
    color: var(--primary-color);
    margin-top: 1rem;
}

.hidden {
    display: none;
}



/* How to Play Page Styles */
.how-to-play {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.how-to-play h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-to-play h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.how-to-play > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

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

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    margin-top: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3rem 2rem;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .how-to-play h1 {
        font-size: 2.5rem;
    }

    .how-to-play h2 {
        font-size: 1.8rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .cta-section h3 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.how-to-play > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }
.step:nth-child(5) { animation-delay: 1s; }
.step:nth-child(6) { animation-delay: 1.2s; }
.step:nth-child(7) { animation-delay: 1.4s; }

.cta-section {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 1.6s;
    opacity: 0;
}

/* Balls System Page Styles */
.balls-system {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.balls-system h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.balls-system h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.balls-system > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.point-system {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.point-system h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.point-system table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.point-system th, .point-system td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.point-system th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    color: var(--secondary-color);
}

.point-system tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .balls-system h1 {
        font-size: 2.5rem;
    }

    .balls-system h2 {
        font-size: 1.8rem;
    }

    .point-system {
        padding: 1.5rem;
    }

    .point-system h3 {
        font-size: 1.5rem;
    }

    .point-system th, .point-system td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.balls-system > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.point-system {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.point-system:nth-child(1) { animation-delay: 0.2s; }
.point-system:nth-child(2) { animation-delay: 0.4s; }
.point-system:nth-child(3) { animation-delay: 0.6s; }
.point-system:nth-child(4) { animation-delay: 0.8s; }
.point-system:nth-child(5) { animation-delay: 1s; } 


/* Contact Page Styles */
.contact {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.hidden {
    opacity: 0;
    transform: translateY(100%);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .contact h1 {
        font-size: 2.5rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

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

    .contact-image {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contact-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contact-content > *:nth-child(1) { animation-delay: 0.2s; }
.contact-content > *:nth-child(2) { animation-delay: 0.4s; }

/* Privacy Policy Page Styles */
/* .privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.privacy-policy h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.privacy-policy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem; 
    }

    .privacy-policy h1 {
        font-size: 1.6rem;
    }

    .privacy-policy h2 {
        font-size: 1.4rem;
    }

    .privacy-policy h3 {
        font-size: 1.2rem;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .privacy-policy ul {
        margin-left: 1rem;
    }

    .privacy-policy a {
        word-wrap: break-word;
        display: inline-block;
    }
} */

/* Privacy Policy Page Styles */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.privacy-policy h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-policy ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.privacy-policy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: var(--secondary-color);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .privacy-policy ul {
        padding-left: 1rem;
    }

    .privacy-policy a {
        word-break: break-word;
        display: inline-block;
    }
}

