:root {
    --color-primary: #1a0000;
    --color-secondary: #ff4500;
    --color-accent: #8b0000;
    --color-highlight: #ffcc00;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(to bottom, #000, var(--color-primary));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 2rem;
    color: var(--color-highlight);
    text-shadow: 0 0 10px var(--color-secondary);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-highlight);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: url('https://images.pexels.com/photos/3617500/pexels-photo-3617500.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-highlight);
    text-shadow: 0 0 20px var(--color-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--color-secondary);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
}

.about h2 {
    text-align: center;
    color: var(--color-highlight);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: var(--color-primary);
}

.features h2 {
    text-align: center;
    color: var(--color-highlight);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Games Section */
.games {
    padding: 5rem 2rem;
    background: linear-gradient(-45deg, var(--color-primary), var(--color-accent));
}

.games h2 {
    text-align: center;
    color: var(--color-highlight);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.game-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1rem;
    color: var(--color-highlight);
}

.play-button {
    display: block;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.play-button:hover {
    background: var(--color-accent);
}

/* Disclaimer Section */
.disclaimer {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

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

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

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
}