/* General Styles */
:root {
    --primary-color: #6a0dad; /* Deep Purple */
    --secondary-color: #ff6f61; /* Coral */
    --accent-color: #ffd700; /* Gold */
    --dark-bg: #1a0033; /* Even darker purple for sections */
    --light-bg: #f0f2f5; /* Light grey for contrast */
    --text-color: #e0e0e0; /* Light grey for general text */
    --heading-color: #ffffff; /* White for headings */
    --border-color: #4a0072; /* Slightly lighter dark purple for borders */
    --overlay-color: rgba(0, 0, 0, 0.7);
    --font-family-poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family-poppins);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--heading-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
    font-size: 1.8rem;
    font-weight: 700;
    gap: 10px;
}

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

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.age-restriction-desktop {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--heading-color);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 10px 0;
        display: block;
    }

    .burger-menu {
        display: block;
    }

    .age-restriction-desktop {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--heading-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Double width for seamless loop */
    height: 100%;
    display: flex;
    animation: slideBackground 60s linear infinite;
}

.game-card-slide-item {
    width: 20%; /* 5 cards visible at a time */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6) grayscale(0.5);
    transition: filter 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 0, 51, 0.8), rgba(26, 0, 51, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rotating-keywords {
    color: var(--accent-color);
    display: inline-block;
    min-width: 150px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.age-restriction-hero {
    position: relative;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 15px;
    border-radius: 5px;
    z-index: 3;
    width: fit-content;
    margin: 0 auto;
}

/* About Game Section */
.about-game-section {
    background-color: var(--dark-bg);
}

.disclaimer-box {
    background-color: rgba(106, 0, 173, 0.2);
    border: 1px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 0.95rem;
}

.disclaimer-box strong {
    color: var(--accent-color);
}

/* Game Selection Section */
.game-selection-section {
    background-color: var(--dark-bg);
}

.game-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.game-card {
    background-color: #2a0050;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.game-thumbnail-link {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-card:hover .game-thumbnail {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.play-game-btn {
    width: 100%;
    margin-top: auto;
}

/* Achievements Section */
.achievements-section {
    background-color: var(--dark-bg);
}

.progress-bar-container {
    background-color: #330066;
    border-radius: 20px;
    height: 30px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    width: 0%; /* Initial width for animation */
    transition: width 1.5s ease-out;
    position: absolute;
    left: 0;
    top: 0;
}

.progress-bar-container .progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 30px;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 1rem;
    z-index: 1;
}

.achievement-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.achievement-item {
    background-color: #2a0050;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.achievement-item h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

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

/* Daily Challenges Section */
.daily-challenges-section {
    background-color: var(--dark-bg);
}

.leaderboard-table {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
}

.leaderboard-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.leaderboard-table th {
    background-color: var(--primary-color);
    color: var(--heading-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.leaderboard-table td {
    background-color: #2a0050;
    color: var(--text-color);
    font-size: 1rem;
}

.leaderboard-table tbody tr:nth-child(odd) td {
    background-color: #330066;
}

.leaderboard-table tbody tr:hover td {
    background-color: #4a0072;
}

.leaderboard-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
    border: 2px solid var(--accent-color);
}

/* Chat Section (Announcements) */
.chat-section {
    background-color: var(--dark-bg);
}

.chat-feed-container {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #2a0050;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 30px;
}

.chat-message-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.chat-message-item:last-child {
    border-bottom: none;
}

.moderator-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.message-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 8px;
}

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

.message-date {
    font-size: 0.85rem;
    color: #999;
}

/* FAQ & Social Section */
.faq-social-section {
    background-color: var(--dark-bg);
}

.search-bar-container {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

#faq-search {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    background-color: #330066;
    color: var(--heading-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#faq-search::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#faq-search:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
}

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

.faq-item {
    background-color: #2a0050;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #330066;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.faq-item h3::after {
    content: '\2b'; /* Plus icon */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '\2212'; /* Minus icon */
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.faq-item.active p {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 15px;
}

/* Contact Us Section */
.contact-us-section {
    background-color: var(--dark-bg);
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #2a0050;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #330066;
    color: var(--heading-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group .error-message {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--secondary-color);
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

/* Policy Sections */
.policy-section {
    background-color: var(--dark-bg);
    text-align: left;
}

.policy-content {
    max-width: 900px;
    margin: 40px auto 0;
    background-color: #2a0050;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.policy-content h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

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

.policy-content ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.policy-content strong {
    color: var(--accent-color);
}

.policy-content em {
    display: block;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #999;
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--heading-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2001;
    transition: background-color 0.3s ease;
}

.close-modal-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 50px 0 20px;
    color: var(--text-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 99;
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo-link {
    margin-bottom: 15px;
}

.footer-brand .logo {
    height: 35px;
}

.footer-brand .site-name {
    font-size: 1.6rem;
}

.copyright {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #bbb;
}

.age-restriction-footer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
}

.footer-nav {
    flex: 1 1 200px;
    text-align: right;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-color);
}

.fixed-play-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1500;
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: none; /* Hidden by default, shown via JS */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.fixed-play-button.show {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animations */
@keyframes slideBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .game-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .game-card {
        height: auto;
    }

    .game-thumbnail-link {
        height: 180px;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .achievement-item {
        width: 200px;
    }

    .chat-feed-container, .contact-form, .policy-content {
        padding: 25px;
    }

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

    .footer-nav {
        margin-top: 30px;
        text-align: center;
    }

    .footer-brand .logo-link {
        justify-content: center;
    }

    .fixed-play-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .site-name {
        font-size: 1.5rem;
    }

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

    .rotating-keywords {
        min-width: 120px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .age-restriction-hero {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .game-grid-container {
        grid-template-columns: 1fr;
    }

    .game-thumbnail-link {
        height: 220px;
    }

    .game-title {
        font-size: 1.3rem;
    }

    .achievement-list {
        flex-direction: column;
        align-items: center;
    }

    .achievement-item {
        width: 80%;
    }

    .chat-message-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .moderator-icon {
        margin-bottom: 10px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .policy-content h3 {
        font-size: 1.5rem;
    }

    .policy-content p, .policy-content ul li {
        font-size: 0.9rem;
    }

    .close-modal-btn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .footer-brand .site-name {
        font-size: 1.4rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .age-restriction-footer {
        font-size: 0.75rem;
    }

    .footer-nav-list li {
        margin-bottom: 8px;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-link {
        font-size: 1.4rem;
    }

    .logo {
        height: 30px;
    }

    .hero-title {
        font-size: 1.8rem; /* Mobile heading size */
    }

    .rotating-keywords {
        min-width: 100px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .game-thumbnail-link {
        height: 160px;
    }

    .game-title {
        font-size: 1.2rem;
    }

    .progress-bar-container {
        height: 25px;
    }

    .progress-bar-container .progress-text {
        font-size: 0.9rem;
        line-height: 25px;
    }

    .leaderboard-table th, .leaderboard-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .leaderboard-avatar {
        width: 30px;
        height: 30px;
    }

    .message-content h3 {
        font-size: 1.3rem;
    }

    .message-content p {
        font-size: 0.9rem;
    }

    #faq-search {
        padding: 10px 40px 10px 15px;
        font-size: 0.9rem;
    }

    .search-icon {
        right: 15px;
        font-size: 1.3rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1.1rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }

    .policy-content p, .policy-content ul li {
        font-size: 0.85rem;
    }

    .fixed-play-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}/* Container styling for top and side padding */
.legalFoldBox {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Heading 1 styles */
.legalFoldBox h1 {
    font-size: 1.8rem; /* Roughly 28px, not too large */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600; /* Slightly bolder */
    line-height: 1.2;
}

/* Heading 2 styles */
.legalFoldBox h2 {
    font-size: 1.5rem; /* Roughly 24px */
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Heading 3 styles */
.legalFoldBox h3 {
    font-size: 1.3rem; /* Roughly 20px */
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Heading 4 styles */
.legalFoldBox h4 {
    font-size: 1.15rem; /* Roughly 18px */
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Heading 5 styles */
.legalFoldBox h5 {
    font-size: 1.05rem; /* Slightly larger than base text */
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Paragraph styles */
.legalFoldBox p {
    font-size: 1rem; /* Standard body text size, e.g., 16px */
    line-height: 1.6; /* Improved readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.legalFoldBox ul {
    list-style-type: disc; /* Default bullet type */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 25px; /* Indent for bullet points */
}

/* List item styles */
.legalFoldBox li {
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.5;
}


.logosFoot{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

.logosFoot img{
    width: 120px;
    height: 80px;
    object-fit: contain;
    backdrop-filter: invert(1);
    --webkit-backdrop-filter: invert(1);
    border-radius: 20px;
    padding: 10px;
}

.header { position: sticky; top: 0; z-index: 1000; background:#0b0b0c; }
.nav-container { display:flex; align-items:center; justify-content:space-between; }
.nav-menu { display:flex; gap:24px; }

@media (max-width: 992px) {
  .burger-menu { display:block; position:relative; z-index:1100; background:none; border:0; font-size:32px; line-height:1; cursor:pointer; }
  .nav-menu {
    position: fixed;
    background:#121217;
    padding:80px 24px 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
    display:block; 
    z-index:1090;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-list { list-style:none; margin:0; padding:0; }
  .nav-list li { margin: 12px 0; }
  .nav-link { display:block; padding:12px 8px; color:#fff; text-decoration:none; }
  body.no-scroll { overflow:hidden; }
}

@media (min-width: 993px) {
  .burger-menu { display:none; }
  .nav-menu { position:static; transform:none; }
}