/* Base Styles & Variables */
:root {
    /* Color Palette */
    --color-onyx: #0f0f14;
    --color-onyx-light: #1a1a24;
    --color-onyx-lighter: #252535;
    --color-emerald: #2ecc71;
    --color-emerald-dark: #27ae60;
    --color-emerald-light: #a8e6cf;
    --color-emerald-transparent: rgba(46, 204, 113, 0.1);
    --color-white: #ffffff;
    --color-gray: #e0e0e0;
    --color-gray-dark: #888888;
    --color-overlay: rgba(15, 15, 20, 0.8);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-emerald: 0 0 20px rgba(46, 204, 113, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1060;
    --z-popover: 1070;
    --z-tooltip: 1080;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-onyx);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 20%),
        linear-gradient(to bottom, var(--color-onyx), var(--color-onyx-light));
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
    line-height: 1.7;
}

a {
    color: var(--color-emerald);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

a:hover {
    color: var(--color-emerald-light);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Additional styles specific to index page */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.banner {
    background: linear-gradient(90deg, var(--color-emerald) 0%, #27ae60 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    top: 90px;
    overflow: hidden;
}

.banner-text {
    position: relative;
    z-index: 1;
    animation: slide 15s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* About Page */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(15, 15, 20, 0.8) 100%);
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-emerald);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--color-emerald);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: var(--color-gray-dark);
}

.about-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-section {
    text-align: left;
    margin-bottom: 50px;
}


.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
    position: relative;
    display: inline-block;
}

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


.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
    position: relative;
    display: inline-block;
}

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

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-gray);
}

.about-content {

    margin-bottom: 80px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1.03);
}


.about-text p {
    margin-bottom: 20px;
    color: var(--color-gray);
    line-height: 1.7;
}

.about-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--color-onyx-light);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-emerald);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.team-section {
    padding: 80px 0;
    background: var(--color-onyx-light);
}

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

.team-member {
    background: var(--color-onyx);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--color-white);
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-onyx-light);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-3px);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(15, 15, 20, 0.9) 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cta-content p {
    margin-bottom: 30px;
    color: var(--color-gray);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

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

    .about-text h2 {
        font-size: 1.5rem;
    }
}

/* games Page */
.game-header {
    padding: 120px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.1) 0%, rgba(15, 15, 20, 0.8) 100%),
        url('images/city-of-sound-bg.jpg') center/cover no-repeat;
    z-index: -1;
    filter: blur(5px);
    margin: -20px;
}

.game-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #9370db, #8a2be2, #9932cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-tagline {
    font-size: 1.5rem;
    color: #9370db;
    margin-bottom: 2rem;
    font-weight: 500;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
}

.game-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-onyx-light);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-onyx-light);
    z-index: 2;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #8a2be2;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.game-info {
    background: var(--color-onyx-light);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 40px;
}

.game-info h2 {
    color: #9370db;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.game-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8a2be2;
}






.back-to-games {
    display: inline-flex;
    align-items: center;
    color: #9370db;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.back-to-games i {
    margin-right: 8px;
    transition: transform var(--transition-normal);
}

.back-to-games:hover {
    color: #b19cd9;
}

.back-to-games:hover i {
    transform: translateX(-5px);
}

.fullscreen-btn {
    background: rgba(147, 112, 219, 0.1);
    border: 1px solid #8a2be2;
    color: #8a2be2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.fullscreen-btn:hover {
    background: #8a2be2;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-primary {
    background: #8a2be2;
    color: white;
}

.btn-primary:hover {
    background: #7b1fa2;
}

.btn-secondary {
    border-color: #8a2be2;
    color: #8a2be2;
}

.btn-secondary:hover {
    background: rgba(147, 112, 219, 0.1);
}

/* Equalizer animation for loading */
.equalizer {
    display: flex;
    align-items: flex-end;
    height: 30px;
    margin: 10px 0 20px;
}

.equalizer-bar {
    width: 5px;
    height: 5px;
    background: #8a2be2;
    margin: 0 2px;
    border-radius: 3px;
    animation: equalize 1.5s infinite ease-in-out;
}

.equalizer-bar:nth-child(1) {
    animation-delay: 0s;
}

.equalizer-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.equalizer-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.equalizer-bar:nth-child(4) {
    animation-delay: 0.6s;
}

.equalizer-bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes equalize {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 2.2rem;
    }

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

    .game-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.game-card {
    background: var(--color-onyx-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-emerald);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-content {
    padding: 25px;
}

.game-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.game-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}


.feature-card {
    background: var(--color-onyx-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-emerald);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

.how-it-works {
    background: var(--color-onyx-light);
    position: relative;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
    position: relative;
    z-index: 2;
}

.step {
    background: var(--color-onyx);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    position: relative;
    transition: transform var(--transition-normal);
}

.step:hover {
    transform: translateY(-10px);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-emerald);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: var(--color-white);
}

.step p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(15, 15, 20, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cta-content p {
    color: var(--color-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

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

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(26, 26, 36, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    background: var(--color-emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Form Elements */

.form-group {
    display: block;
    margin-bottom: var(--spacing-md);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-white);
    background-color: var(--color-onyx-light);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-emerald);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.form-control::placeholder {
    color: var(--color-gray-dark);
    opacity: 1;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--color-onyx-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-right: 10px;
    transition: all var(--transition-normal);
}

.custom-checkbox:hover .checkmark {
    border-color: var(--color-emerald);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--color-emerald);
    border-color: var(--color-emerald);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-emerald {
    color: var(--color-emerald);
}

.bg-onyx {
    background-color: var(--color-onyx);
}

.bg-onyx-light {
    background-color: var(--color-onyx-light);
}

.bg-emerald {
    background-color: var(--color-emerald);
}

/* Consent Toast & Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.consent-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100%;
    max-width: 400px;
    background: var(--color-onyx-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: none;
    border: 1px solid var(--color-emerald);
    overflow: hidden;
    color: #fff;
    font-family: var(--font-body);
}

.consent-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.consent-content {
    padding: 25px;
}

.consent-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-header h3 {
    margin: 0;
    color: var(--color-emerald);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.consent-body {
    margin-bottom: 20px;
}

.consent-body p {
    margin: 0 0 25px 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.consent-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.consent-actions .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.consent-actions .btn-primary {
    background-color: var(--color-emerald);
    border: none;
}

.consent-actions .btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.consent-actions .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.consent-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.consent-step {
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}

.consent-step.show {
    opacity: 1;
}

.consent-step.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .consent-toast {
        width: calc(100% - 40px);
        right: 20px;
        left: auto;
        bottom: 20px;
        max-width: none;
    }

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

    .consent-actions .btn {
        width: 100%;
        margin: 5px 0;
    }

    .consent-content {
        padding: 20px 15px;
    }

    .consent-header h3 {
        font-size: 1.2rem;
    }

    .consent-body p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Responsive Utilities */
.hidden {
    display: none !important;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

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

    .cookie-content p {
        margin-bottom: var(--spacing-sm);
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.25rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-emerald);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-emerald-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(15, 15, 20, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(15, 15, 20, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-panel:hover::before {
    opacity: 1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 90px;
    z-index: 9999;
    padding: var(--spacing-xs) 0;
    background: rgba(15, 15, 20, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
}

.logo span {
    color: var(--color-emerald);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* Active state for hamburger */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

/* Navigation */
.nav-container {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: var(--spacing-md);
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-fast);
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-emerald);
    transition: width var(--transition-normal);
}

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

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

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -60%;
        width: 280px;
        height: 100vh;
        background: var(--color-onyx);
        padding: 80px 30px 30px;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        /* transform: translateX(100%); */
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        overflow-y: auto;
    }

    .nav-container.active {
        transform: translateX(-100%);
        opacity: 1;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
    }

    .nav-item {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }
}

/* Adjust header height on mobile */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        height: 60px;
    }
}

/* Disclaimer Page */
.breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    padding: 0 10px;
    color: var(--color-gray);
}

.breadcrumb-item a {
    color: var(--color-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-white);
}

.breadcrumb-item.active {
    color: var(--color-gray);
}

.disclaimer-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.disclaimer-section {
    margin-bottom: 40px;
}

.disclaimer-section h2 {
    color: var(--color-emerald);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-section h3 {
    color: var(--color-white);
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.disclaimer-section p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.disclaimer-section a {
    color: var(--color-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-section a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.disclaimer-acknowledgment {
    margin-top: 50px;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    border-left: 3px solid var(--color-emerald);
    border-radius: 0 5px 5px 0;
}

/* Homepage Disclaimer Section */
.disclaimer-section {
    padding: 40px;
    background: var(--color-onyx-light);
    border-top: 1px solid rgba(46, 204, 113, 0.1);
}

.disclaimer-content {
    background: rgba(15, 15, 20, 0.6);
    border-left: 4px solid var(--color-emerald);
    padding: 25px;
    border-radius: var(--radius-md);
}

.disclaimer-content h2 {
    color: var(--color-emerald);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content p {
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.disclaimer-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.disclaimer-content li {
    color: var(--color-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.disclaimer-content li i {
    color: var(--color-emerald);
    font-size: 1.1em;
    margin-top: 3px;
}

.disclaimer-note {
    font-size: 0.9em;
    font-style: italic;
    color: var(--color-gray-dark) !important;
    margin-top: 20px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    background: linear-gradient(90deg, var(--color-emerald-dark) 20%, #fff 40%, var(--color-emerald-light) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-emerald);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* Nebula Background */
.nebula-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(46, 204, 113, 0.1) 0%, rgba(15, 15, 20, 0) 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 230, 207, 0.1) 0%, rgba(15, 15, 20, 0) 50%);
    z-index: 0;
    animation: nebulaMove 30s infinite alternate;
}

@keyframes nebulaMove {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Crystal Shards */
.crystal-shards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.crystal-shards::before,
.crystal-shards::after {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    width: 100%;
    height: 1px;
    transform: rotate(45deg);
    animation: shardMove 20s linear infinite;
}

.crystal-shards::after {
    transform: rotate(-45deg);
    animation-delay: -10s;
}

@keyframes shardMove {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Featured Games Section */
.featured-games {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.game-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-card h3 {
    margin: var(--spacing-xs) 0;
    color: var(--color-white);
}

.game-card p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: rgba(15, 15, 20, 0.5);
    position: relative;
    z-index: 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-emerald);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    position: relative;
    z-index: 1;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-emerald);
    z-index: 0;
}


/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: transform var(--transition-normal);
}

.feature:hover .feature-icon {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--color-onyx-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 90px;
}

.footer-logo span {
    color: var(--color-emerald);
}

.footer-description {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.footer-links h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-emerald);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-onyx);
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

/* Contact Page Styles */

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(15, 15, 20, 0.6);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-emerald);
    font-size: 1.2rem;
}

.info-content h3 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--color-emerald);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--color-white);
}

.contact-form-container {
    background: rgba(15, 15, 20, 0.6);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--color-white);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 20, 0.8);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-onyx-light);
    color: var(--color-white);
    padding: 10px 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--color-emerald);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #3dd67a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn .btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.btn .btn-text {
    transition: opacity 0.3s ease;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loader {
    display: block;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-emerald);
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.form-success h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--color-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--color-onyx);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-item {
    background: rgba(15, 15, 20, 0.6);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: var(--color-gray);
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-emerald);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .contact-info {
        grid-row: 2;
    }
}

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 30px;
    }

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

@media (max-width: 576px) {
    .contact-form-container {
        padding: 25px 20px;
    }

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

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

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    max-width: 500px;
    width: 90%;
    padding: var(--spacing-lg);
    text-align: center;
}

.modal h2 {
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.modal p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}


.form-group input[type="checkbox"] {
    margin-right: var(--spacing-xs);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group label {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.button-group {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-onyx-light);
    padding: var(--spacing-md);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cookie-content p {
    margin: 0;
    margin-right: var(--spacing-md);
    color: var(--color-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

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

/* Removed the old mobile menu styles as they're now handled above */

.hero h1 {
    font-size: 2.5rem;
}

.cta-buttons {
    flex-direction: column;
}

.button-group {
    flex-direction: column;
}

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

.cookie-content p {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
}


@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .game-grid,
    .steps,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.pt-1 {
    padding-top: var(--spacing-xs);
}

.pt-2 {
    padding-top: var(--spacing-sm);
}

.pt-3 {
    padding-top: var(--spacing-md);
}

.pt-4 {
    padding-top: var(--spacing-lg);
}

.pt-5 {
    padding-top: var(--spacing-xl);
}

.pb-1 {
    padding-bottom: var(--spacing-xs);
}

.pb-2 {
    padding-bottom: var(--spacing-sm);
}

.pb-3 {
    padding-bottom: var(--spacing-md);
}

.pb-4 {
    padding-bottom: var(--spacing-lg);
}

.pb-5 {
    padding-bottom: var(--spacing-xl);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #40B866;
}

::-webkit-scrollbar-thumb:hover {
    background: #010101;
}