:root {
    --bg-color: #000000;
    --text-color: #f8fafc;
    --accent-color: #facc15; /* OTHERS Yellow */
    --card-bg: #111111;
}

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

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

header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-color) 100%);
    border-bottom: 2px solid var(--accent-color);
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.brand {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-character-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(250, 204, 21, 0.2)); /* Yellow glow */
}

.featured-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.featured-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    text-align: left;
}

.featured-overlay h2 {
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.featured-overlay p {
    font-size: 1.1rem;
    color: #e2e8f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.game-image {
    width: 100%;
    aspect-ratio: 616 / 353;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: block;
}

.game-card h3 { margin-bottom: 0.8rem; font-size: 1.4rem; }
.game-card p { margin-bottom: 1.5rem; font-size: 0.95rem; color: #cbd5e1; flex-grow: 1; }

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s, transform 0.2s;
}

.btn:hover {
    background-color: #eab308; /* Slightly darker yellow on hover */
    transform: scale(1.05);
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background-color: var(--card-bg);
    border-radius: 4px;
    transition: background-color 0.2s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #000;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}
