/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #333333;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #444444;
    --hover-color: #555555;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-secondary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../image/car17.jpg') center/cover no-repeat;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 1rem;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Hero Info Cards Section */
.hero-info-section {
    padding: 3rem 0;
    background-color: var(--primary-color);
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-info-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.hero-info-card:hover {
    transform: translateY(-5px);
}

.hero-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.hero-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.fs-highlight {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.15rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    min-width: 150px;
}

/* Mini Game Section */
.mini-game-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../image/car22.jpg') center/cover no-repeat;
}

.mini-game-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.mini-game-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.game-info {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.game-board {
    min-height: 300px;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--text-secondary);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-disabled {
    background-color: var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--text-secondary);
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.games-section h1,
.games-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.game-card {
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.game-card.available {
    cursor: pointer;
}

.game-card.available:hover {
    transform: translateY(-5px);
}

.game-card.locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.fs-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--text-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--secondary-color);
    padding: 2rem;
    z-index: 1000;
    transition: right 0.3s ease-out;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 2rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-list a.active {
    color: var(--text-secondary);
    font-weight: bold;
    border-left: 3px solid var(--text-secondary);
    padding-left: 1rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Page Section */
.page-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    min-height: 60vh;
}

.page-section.hakkimizda-page {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../image/car18.jpg') center/cover no-repeat;
}

.page-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.about-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.about-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.news-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
    background-color: var(--primary-color);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-card p {
    line-height: 1.8;
}

/* Contact Page */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-secondary);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--text-color);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--text-secondary);
}

/* Mini Game Page */
.mini-game-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../image/car22.jpg') center/cover no-repeat;
}

.mini-game-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.game-page-info {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.game-page-info p {
    margin-bottom: 0.5rem;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Document Pages */
.document-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: 10px;
}

.document-content h1 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.document-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.document-section {
    margin-bottom: 3rem;
}

.document-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.document-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.document-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.document-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.document-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.document-section a {
    color: var(--text-color);
    text-decoration: underline;
}

.document-section a:hover {
    color: var(--text-secondary);
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: 10px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.thank-you-content .btn {
    margin-top: 2rem;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Register Page */
.register-container {
    max-width: 600px;
    margin: 0 auto;
}

.register-form-wrapper {
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: 10px;
}

.register-form-wrapper h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.register-info {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.register-form {
    margin-top: 2rem;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.login-link a {
    color: var(--text-color);
    text-decoration: underline;
}

.login-link a:hover {
    color: var(--text-secondary);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: var(--secondary-color);
}

table th {
    padding: 1rem;
    text-align: left;
    color: var(--text-secondary);
    font-weight: bold;
    border-bottom: 2px solid var(--border-color);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
    background-color: var(--hover-color);
}

table tbody tr:last-child td {
    border-bottom: none;
}

.total-row {
    background-color: var(--secondary-color);
    font-weight: bold;
}

/* Mobile Table Cards */
@media (max-width: 768px) {
    .table-container {
        overflow: visible;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tbody tr {
        background-color: var(--accent-color);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        margin-bottom: 1rem;
        padding: 1rem;
        display: block;
    }

    td {
        border: none;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-right: 0;
        text-align: left;
    }

    td:first-child {
        padding-top: 0.75rem;
    }

    td:last-child {
        border-bottom: none;
        padding-bottom: 0.75rem;
    }

    td:before {
        content: attr(data-label) ": ";
        display: block;
        font-weight: bold;
        color: var(--text-secondary);
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .total-row {
        background-color: var(--secondary-color);
        font-weight: bold;
    }
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.leaderboard-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.leaderboard-table th:first-child,
.leaderboard-table td:first-child {
    text-align: center;
    width: 80px;
}

.leaderboard-table td:first-child {
    font-weight: bold;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--accent-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--hover-color);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
}

.accordion-content p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Team Table */
.team-table {
    margin-top: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Game Details Section */
.game-details-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.game-details-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.game-comparison-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.game-comparison-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.comparison-table th,
.comparison-table td {
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

/* Review Stats Section */
.review-stats-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.review-stats-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.stats-table th,
.stats-table td {
    text-align: center;
}

.stats-table th:first-child,
.stats-table td:first-child {
    text-align: left;
}

/* Working Hours Section */
.working-hours-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.working-hours-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.hours-table th,
.hours-table td {
    text-align: center;
}

.hours-table th:first-child,
.hours-table td:first-child {
    text-align: left;
}

/* Contact FAQ Section */
.contact-faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.contact-faq-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Bonus Section */
.bonus-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.bonus-section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.bonus-table th,
.bonus-table td {
    text-align: center;
}

.bonus-table th:first-child,
.bonus-table td:first-child {
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-description {
        padding: 0 1rem;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-info-card {
        padding: 1.5rem;
    }

    .hero-info-card h3 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .game-controls {
        flex-direction: column;
    }

    .game-controls .btn {
        width: 100%;
    }

    .document-content {
        padding: 2rem 1.5rem;
    }

    .document-content h1 {
        font-size: 2rem;
    }

    .document-section h2 {
        font-size: 1.5rem;
    }

    .document-section h3 {
        font-size: 1.2rem;
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.75rem 0.5rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }
}

