/* Dark Theme for Zaman Studios */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background-color: #0d0d0d;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5cf6; /* Neon purple */
}

.logo-img {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px; /* Space between logo and text */
}

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

.nav-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #8b5cf6;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e0e0e0;
}

.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #a0a0a0;
}

.cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #8b5cf6;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #a78bfa;
}

.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.1rem;
    color: #a0a0a0;
}

.content a {
    color: #8b5cf6;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #0d0d0d;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #0d0d0d;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

    .hero p {
        font-size: 1rem;
    }
}

/* Hero Section (Dark Theme) */
.hero {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero .cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.hero .cta:hover {
    background-color: #d35400;
}

/* Values Section (from previous response, included for reference) */
.values {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.values-header {
    margin-bottom: 40px;
}

.values-header h2.slogan {
    font-size: 2.5rem;
    color: #333;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-column {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-column:hover {
    transform: translateY(-5px);
}

.value-column h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.value-column p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.games h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.game-image {
    width: 100%;
    height: 200px;
    background-color: #ccc; /* Placeholder for game image */
    border-bottom: 2px solid #e67e22;
}

.game-card h3 {
    font-size: 1.8rem;
    color: #222;
    margin: 15px 0 10px;
}

.game-type {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.game-platforms {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .values-header h2.slogan {
        font-size: 2rem;
    }

    .games h2 {
        font-size: 2rem;
    }
}