/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --mhi-color-bg: #0A1128;
    --mhi-color-bg-alt: #101B3B;
    --mhi-color-gold: #D4AF37;
    --mhi-color-gold-light: #F3E5AB;
    --mhi-color-gold-dark: #AA8C2C;
    --mhi-color-text: #E0E6ED;
    --mhi-color-text-muted: #A0B0C0;
    --mhi-color-white: #FFFFFF;
    
    --mhi-font-heading: 'Playfair Display', serif;
    --mhi-font-body: 'Lora', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--mhi-color-bg);
    color: var(--mhi-color-text);
    font-family: var(--mhi-font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--mhi-font-heading);
    font-weight: 700;
    color: var(--mhi-color-gold);
    line-height: 1.2;
}

/* Layout */
.mhi-page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--mhi-color-bg) 0%, #050814 100%);
    min-height: 100vh;
}

/* Header */
.mhi-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.mhi-logo-text {
    font-family: var(--mhi-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mhi-color-gold);
    letter-spacing: 2px;
}

.mhi-brand-group {
    text-align: center;
    flex-grow: 1;
    padding: 0 2rem;
}

.mhi-brand-name {
    font-family: var(--mhi-font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--mhi-color-white);
}

.mhi-brand-sub {
    font-size: 0.9rem;
    color: var(--mhi-color-gold-light);
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.mhi-age-badge {
    border: 2px solid var(--mhi-color-gold);
    color: var(--mhi-color-gold);
    font-family: var(--mhi-font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Section */
.mhi-hero-banner {
    padding: 8rem 4rem 4rem 4rem;
    text-align: center;
    position: relative;
}

.mhi-hero-content {
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.mhi-hero-kicker {
    display: inline-block;
    color: var(--mhi-color-gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--mhi-color-gold);
    padding-bottom: 0.5rem;
}

.mhi-hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--mhi-color-white);
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.mhi-hero-desc {
    font-size: 1.2rem;
    color: var(--mhi-color-text);
    margin-bottom: 3rem;
}

.mhi-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mhi-hero-card {
    background: rgba(16, 27, 59, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.mhi-hero-card:hover {
    transform: translateY(-10px);
    border-color: var(--mhi-color-gold);
    background: rgba(16, 27, 59, 0.9);
}

.mhi-hc-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--mhi-color-white);
}

.mhi-hc-text {
    font-size: 1rem;
    color: var(--mhi-color-text-muted);
}

/* Shared Section Styles */
.mhi-section-play,
.mhi-section-games {
    padding: 6rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mhi-sec-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.mhi-sec-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mhi-sec-intro {
    font-size: 1.1rem;
    color: var(--mhi-color-text-muted);
}

.mhi-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mhi-feature-card {
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--mhi-color-gold-dark);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.mhi-feature-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--mhi-color-gold);
}

.mhi-feat-kicker {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mhi-color-gold-light);
    margin-bottom: 0.5rem;
}

.mhi-feat-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--mhi-color-white);
}

.mhi-feat-text {
    margin-bottom: 1.5rem;
    color: var(--mhi-color-text);
}

.mhi-feat-list {
    list-style: none;
}

.mhi-feat-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--mhi-color-text-muted);
}

.mhi-feat-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--mhi-color-gold);
    font-size: 1.2rem;
    top: -2px;
}

/* Footer */
.mhi-foot-area {
    background: #040812;
    padding: 5rem 4rem 2rem 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.mhi-foot-slogan {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: var(--mhi-color-gold-light);
}

.mhi-foot-cols {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.mhi-foot-h4 {
    color: var(--mhi-color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mhi-foot-desc {
    color: var(--mhi-color-text-muted);
}

.mhi-foot-contact p {
    margin-bottom: 0.5rem;
    color: var(--mhi-color-text-muted);
}

.mhi-foot-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.mhi-nav-link {
    color: var(--mhi-color-gold-light);
    font-family: var(--mhi-font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mhi-nav-link:hover {
    color: var(--mhi-color-white);
}

.mhi-foot-copyright {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .mhi-hero-grid,
    .mhi-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mhi-foot-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mhi-top-nav {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    .mhi-hero-banner {
        padding: 4rem 2rem 2rem 2rem;
    }
    .mhi-hero-title {
        font-size: 3rem;
    }
    .mhi-hero-grid,
    .mhi-features-grid,
    .mhi-foot-cols {
        grid-template-columns: 1fr;
    }
    .mhi-section-play,
    .mhi-section-games {
        padding: 4rem 2rem;
    }
    .mhi-foot-area {
        padding: 4rem 2rem 2rem 2rem;
    }
    .mhi-foot-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
