:root {
    --primary-color: #0ff0fc;
    --secondary-color: #01273d;
    --accent-color: #ff6b6b;
    --text-color: #e6e6e6;
    --bg-color: #01273d;
    --card-bg: #013858;
    --glass-bg: #01273d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('../images/bg-texture.png');
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0cc0cc;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Age Disclaimer Banner */
.age-disclaimer {
    background: rgba(255, 180, 0, 0.15);
    border-bottom: 1px solid rgba(255, 180, 0, 0.2);
    padding: 10px 0;
    position: relative;
    z-index: 90;
    margin-top: 30px;
}

.age-disclaimer p {
    color: #ffd700;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.age-disclaimer strong {
    font-weight: 600;
}

/* Make the banner more compact on mobile */
@media (max-width: 768px) {
    .age-disclaimer p {
        font-size: 0.8rem;
        padding: 0 10px;
        text-align: left;
        line-height: 1.4;
    }
    
    .age-disclaimer {
        padding: 8px 0;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #0ff0fc, #6e44ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    padding: 0.5rem;
    z-index: 1001;
}

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

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

.nav-links li {
    margin-left: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

    .menu-toggle svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }

    .menu-toggle.active svg:first-child {
        opacity: 0;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo img {
        height: 32px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background-color: #0cc0cc;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 206, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(15, 240, 252, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(15, 240, 252, 0.1);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 8px 0;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    background: linear-gradient(90deg, #6e44ff, var(--primary-color));
    text-shadow: 2px 2px rgba(240, 244, 247, 0.842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.step {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.step h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.why-choose-us h2 {
    background: linear-gradient(90deg, #6e44ff, var(--primary-color));
    text-shadow: 2px 2px rgba(240, 244, 247, 0.842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {

    .steps-container,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works h2,
    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .step,
    .feature {
        padding: 1.5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}


.logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #0ff0fc, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-links li {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle svg {
    display: block;
    width: 24px;
    height: 24px;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 0.75rem 1.25rem;
    }

    .nav-links {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5.5rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        margin: 0.25rem 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
    }

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

    .nav-link:hover,
    .nav-link.active {
        background: rgba(15, 240, 252, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 32px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding-top: 4.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo img {
        height: 28px;
    }
}

/* Modern Disclaimer Section */
.disclaimer-banner {
    padding: 6rem 0;
    background: #0a0e17;
    position: relative;
    overflow: hidden;
}

.disclaimer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e44ff, #0ff0fc, #ff6b6b);
    background-size: 200% 100%;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.disclaimer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.disclaimer-banner h2 {
    text-align: center;
    font-size: 2.8rem;
    margin: 0 auto 4rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.disclaimer-banner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6e44ff, #0ff0fc);
    border-radius: 4px;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.disclaimer-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e44ff, #0ff0fc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disclaimer-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.disclaimer-item:hover::after {
    opacity: 1;
}

.disclaimer-icon {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.1), rgba(15, 240, 252, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.disclaimer-item:hover .disclaimer-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-text h4 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 1.2rem 0;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.disclaimer-text h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6e44ff, #0ff0fc);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.disclaimer-item:hover .disclaimer-text h4::after {
    width: 60px;
}

.disclaimer-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.disclaimer-item:hover .disclaimer-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .disclaimer-content {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .disclaimer-item {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .disclaimer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .disclaimer-banner h2 {
        font-size: 2.4rem;
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 5rem 0;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .disclaimer-banner h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .disclaimer-item {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-banner {
        padding: 4rem 0;
    }
    
    .disclaimer-banner h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .disclaimer-item {
        padding: 1.75rem 1.5rem;
    }
    
    .disclaimer-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .disclaimer-text h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Hero Section */
.hero {
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.6;
    z-index: 0;
}


.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #6e44ff, var(--primary-color));
    text-shadow: 2px 2px rgba(240, 244, 247, 0.842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

.hero h4 {
    font-size: 1rem;
    color: var(--text-color);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

.games-section h2 {
    background: linear-gradient(90deg, #6e44ff, var(--primary-color));
    text-shadow: 2px 2px rgba(240, 244, 247, 0.842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
}

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

.game-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

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

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

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

.game-card h3 {
    padding: 1.25rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.7);
}

.game-card .btn {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 15, 26, 0.9) 100%);
    text-align: center;
}

.about-preview h2 {
    background: linear-gradient(90deg, #6e44ff, var(--primary-color));
    text-shadow: 2px 2px rgba(240, 244, 247, 0.842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-preview p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}



/* Footer */
footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links h3,
.footer-legal h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-legal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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



.form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

    .subtitle {
        font-size: 1.1rem;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 250px 0 80px;
    }

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

    .games-section h2,
    .about-preview h2 {
        font-size: 2rem;
    }

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

    .footer-links h3::after,
    .footer-legal h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-about {
        margin-bottom: 2rem;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .game-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .button-group .btn {
        width: 100%;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero,
.games-section,
.about-preview {
    animation: fadeIn 0.8s ease-out forwards;
}

.games-section {
    animation-delay: 0.2s;
}

.about-preview {
    animation-delay: 0.4s;
}


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

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

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

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