:root {
    --bg-color: #0c0c0c;
    --text-color: #e0e0e0;
    --accent-gold: #c5a059;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid var(--accent-gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.3), rgba(12, 12, 12, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.brand-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #fff, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
    letter-spacing: 1px;
}

/* Portfolio Grid */
.portfolio-container {
    max-width: 1000px;
    margin: -50px auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.game-desc {
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border: 1px solid #444;
    border-radius: 4px;
    color: #888;
}

.play-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--accent-gold);
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .brand-name {
        font-size: 2.2rem;
    }

    .portfolio-container {
        margin-top: 30px;
    }

    .hero {
        height: 50vh;
    }
}