:root {
    --primary-color: var(--darker-bg);
    --secondary-color: var(--dark-bg);
    --accent-color: var(--blood-red);
    --accent-hover: var(--blood-red-hover);
    --text-color: var(--text-light);
    --text-dark: var(--text-light);
    --background-light: var(--dark-bg);
    --border-color: var(--border-dark);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    
    /* Your specific colors */
    --dark-bg: #000000;
    --darker-bg: #141414;
    --blood-red: #8b0000;
    --blood-red-hover: #a00000;
    --text-light: #e0e0e0;
    --border-dark: #333333;
}

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

p {
    padding-top: 10;
    padding-bottom: 10;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

h2 {
    text-align: center;
}

h4 {
    text-align: center;
}

p {
    text-align: center;
}


ul {
    text-align: center;
}


/* Header and Navigation */
.main-nav {
    background-color: var(--darker-bg);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    height: 120px;
}

.logo img {
    height: 70px;
}

section.contact-form-section{
    padding-bottom: 50;
}

section.support-form-section{
    padding-bottom: 500;
}

section.faq-section {
    padding-top: 50;
    padding-bottom: 50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--blood-red);
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h1 {
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button.primary {
    background-color: var(--blood-red);
    color: var(--text-light);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--blood-red);
    color: var(--text-light);
    margin-left: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: var(--dark-bg);
}

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

.feature-card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-dark);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--blood-red);
    margin-bottom: 1rem;
    display: block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Video Showcase */
.video-showcase {
    margin-top: 4rem;
    text-align: center;
}

.video-showcase h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Add hover effect */
.video-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Gameplay Section */
.gameplay {
    padding: 4rem 2rem;
    background-color: var(--darker-bg);
    color: var(--text-light);
}

.gameplay-preview {
    max-width: 800px;
    margin: 2rem auto;
}

.gameplay-preview video {
    width: 100%;
    border-radius: 10px;
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 0;
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.seo-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.seo-features ul {
    list-style: none;
    padding: 0;
}

.seo-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    padding-left: 2rem;
}

.seo-features li:before {
    content: "✓";
    color: var(--blood-red);
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.app-highlights {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.app-highlights ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.app-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.app-highlights li:before {
    content: "•";
    color: var(--blood-red);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

@media (max-width: 768px) {
    .seo-grid,
    .feature-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: var(--dark-bg);
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Form */
.contact {
    padding: 4rem 2rem;
    background-color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-dark);
    border-radius: 5px;
    background-color: var(--darker-bg);
    color: var(--text-light);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blood-red);
    outline: none;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Improved Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--darker-bg);
    color: var(--text-light);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid var(--border-dark);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-banner .cta-button {
    margin: 0;
    padding: 0.5rem 1rem;
}

.cookie-banner .tertiary {
    background-color: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-content p {
        flex: 1;
    }
}

/* Add your styles here */

/* Responsive navigation */
.hamburger-menu {
    display: none;
}

/* Add these styles to your existing style.css file */

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 60px;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.game-description,
.features-detail,
.team,
.story,
.join-community {
    padding: 4rem 2rem;
}

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

.game-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--darker-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-dark);
}

.highlight-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-button {
    padding: 1rem 2rem;
    background: var(--blood-red);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    background: var(--blood-red-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .game-highlights,
    .feature-list,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }
}

/* Download page styles */
.download-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
}

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

.download-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out forwards;
}

.download-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--blood-red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Download Buttons Styling */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 1.5rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.download-button.android {
    background: linear-gradient(135deg, #3DDC84, #2AA866);
    color: #000;
}

.download-button.ios {
    background: linear-gradient(135deg, #333, #000);
    color: #fff;
}

.platform-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.button-small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.8;
}

.button-large {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.download-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.download-button.android:hover {
    background: linear-gradient(135deg, #4AE996, #2FBF75);
}

.download-button.ios:hover {
    background: linear-gradient(135deg, #444, #111);
}

/* Open Test Section */
.open-test {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.download-info {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* How to Play Section */
.how-to-play {
    padding: 6rem 2rem;
    background-color: var(--darker-bg);
    position: relative;
}

.how-to-play:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(145deg, var(--dark-bg), var(--darker-bg));
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blood-red), #ff3a3a);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* Feedback Section */
.feedback-section {
    text-align: center;
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    position: relative;
}

.feedback-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
}

.feedback-section .cta-button {
    margin-top: 2.5rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feedback-section .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.25);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scrolling background images */
.scroll-backgrounds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.scroll-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transform: translate(-50%, -50%);
}

.bg-1 {
    background-image: url('/assets/images/bg-image-game-table-1.png');
    z-index: -1;
}

.bg-2 {
    background-image: url('/assets/images/bg-image-game-table-2.png');
    z-index: -2;
}

.bg-3 {
    background-image: url('/assets/images/bg-image-game-table-3.png');
    z-index: -3;
}

/* Remove semi-transparent backgrounds that might interfere */
main, section {
    background: transparent;
    padding-top: 50;
}

.scroll-section {
    height: 300vh;
    position: relative;
    z-index: -1;
    width: 100%;
}

.scroll-content {
    position: sticky;
    top: 0;
    padding: 2rem;
    width: 100%;
    height: 30vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.scroll-content p {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Debug Panel Styles */
.debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--blood-red);
    border-radius: 5px;
    padding: 10px;
    color: var(--text-light);
    font-family: monospace;
    z-index: 9999;
    min-width: 200px;
}

.debug-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--blood-red);
}

.debug-toggle {
    background: var(--blood-red);
    border: none;
    color: var(--text-light);
    padding: 2px 8px;
    cursor: pointer;
    border-radius: 3px;
}

.debug-content p {
    margin: 5px 0;
    font-size: 12px;
}

.debug-triggers {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid var(--border-dark);
    font-size: 12px;
}

.debug-triggers div {
    margin: 3px 0;
}

.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-left: 10px;
}

.language-btn {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Flag icon styles */
.flag-icon {
    font-size: 18px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-spacer {
        height: 80px; /* Adjust based on your mobile header height */
    }
    
    .page-hero {
        margin-top: 80px;
    }
}

/* Header Spacer */
.header-spacer {
    height: 120px; /* Same as your main-nav height */
    width: 100%;
    display: block;
    min-height: 120px; /* Ensure minimum height is enforced */
}