/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2px;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 350px;
}



.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 1000;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #cccccc;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    min-height: 100vh;
    padding: 0;
}

.games {
    min-height: 100vh;
    padding: 4rem 0;
}

.studio {
    min-height: auto;
    padding: 4rem 0;
}

.contact {
    min-height: auto;
    padding: 2rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Games Section */
.games {
    background: #111111;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.game-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 2rem;
}

.game-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #dddddd;
    line-height: 1.7;
}

.game-features h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.game-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.game-features li {
    padding: 0.5rem 0;
    color: #dddddd;
    position: relative;
    padding-left: 1.5rem;
}

.game-features li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.game-status {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 2rem;
}

.game-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.placeholder-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 1.2rem;
    text-align: center;
    border: 2px dashed #333333;
}

.game-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Studio Section */
.studio {
    background: #0a0a0a;
}

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

.studio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: #111111;
    border-radius: 12px;
    border: 1px solid #333333;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-subtitle {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    font-weight: 600;
}

.studio-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #dddddd;
    line-height: 1.8;
}

.studio-approach {
    text-align: left;
    margin: 3rem 0;
    background: #111111;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.studio-approach h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.studio-approach ul {
    list-style: none;
}

.studio-approach li {
    padding: 0.8rem 0;
    color: #dddddd;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.studio-approach li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.studio-mission {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #ffffff !important;
}

/* Contact Section */
.contact {
    background: #111111;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-group {
    text-align: center;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

.contact-group h3 {
    color: #ff6b35;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.contact-title {
    display: block;
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    padding: 1rem;
    transition: color 0.3s ease;
    border-radius: 8px;
}

.contact-title:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.1);
}

.contact-link {
    display: block;
    color: #dddddd;
    text-decoration: none;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #222222;
    font-weight: 500;
}

.contact-link:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 0.75rem 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer-tagline {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .game-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .studio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .game-card {
        padding: 3rem;
    }
    
    .game-img {
        height: 350px;
    }
    
    .placeholder-image {
        height: 350px;
    }
}   font-size: 2rem;
    }
    
    .game-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .game-card {
        padding: 3rem;
    }
    
    .game-img {
        height: 350px;
    }
    
    .placeholder-image {
        height: 350px;
    }
}     font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .game-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .game-title {
        font-size: 1.8rem;
    }

    .studio-subtitle {
        font-size: 1.5rem;
    }

    .studio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .hero-cta,
    .game-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}