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

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --white: #ffffff;
    --green: #8ef8b1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 24px;
    font-size: 14px;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero {
    height: 100vh;
    background: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    margin-top: 0;
}

.hero-content {
    padding: 40px 60px;
    background: radial-gradient(circle at center, rgba(97, 81, 51, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    color: #ffffff;
}

.hero-btn {
    margin-top: 32px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fdf8e2;
}

.about {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.about h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--dark);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.games {
    padding: 100px 0;
    background: var(--light);
}

.games h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.game-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.game-info {
    padding: 24px;
}

.game-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.game-info p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 15px;
}

.games-cta {
    text-align: center;
    margin-top: 48px;
}

.careers {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.careers h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.careers p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 32px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

.copyright {
    text-align: center;
    color: var(--gray);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about h2,
    .games h2,
    .careers h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}
