:root {
    --primary-color: #E8A598; /* Soft Coral */
    --primary-dark: #D08C7F;
    --secondary-color: #FEC89A; /* Soft Peach */
    --accent-green: #9CBFA7; /* Sage Green */
    --bg-color: #FAF9F6; /* Off-white / Cream */
    --bg-alt: #F2EFE9;
    --text-main: #4A4A4A; /* Dark Grey (Softer than black) */
    --text-light: #7A7A7A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --border-radius: 12px;
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-padding {
    padding: 60px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* --- Header & Nav --- */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C2C2C;
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #FFF0F5 0%, #E8F5E9 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

/* --- Cards & Grid --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

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

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

/* --- Category Cards --- */
.category-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
    font-size: 0.9rem;
}

/* --- Game Cards --- */
.game-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.game-card {
    display: block;
    color: inherit;
    cursor: pointer;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.game-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.18));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-thumb::after {
    opacity: 1;
}

.game-card:hover .game-thumb img {
    transform: scale(1.03);
}

.game-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.game-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.rating {
    color: #F4B400; /* Gold */
    font-size: 0.9rem;
    font-weight: 700;
}

/* --- Value Props --- */
.value-props {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.prop {
    flex: 1;
    min-width: 250px;
}

.prop h3 {
    color: var(--accent-green);
    margin-bottom: 15px;
}

/* --- About Page Specifics --- */
.page-header {
    background-color: var(--bg-alt);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 40px 0;
}

.philosophy-box {
    background-color: #F0F7F4; /* Light Mint */
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
}

/* --- Footer --- */
footer {
    background-color: #2C2C2C;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 2;
    min-width: 300px;
}

.footer-about h4, .footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    flex: 1;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

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

.copyright {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .game-info h4 {
        font-size: 1rem;
    }

    .game-desc {
        font-size: 0.9rem;
    }
}
