:root {
    --lchm-bg: #0A192F;
    --lchm-bg-alt: #112240;
    --lchm-text: #F8F9FA;
    --lchm-text-muted: #8892B0;
    --lchm-accent: #D4AF37;
    --lchm-accent-hover: #F1E5AC;
    
    --lchm-font-heading: 'Playfair Display', serif;
    --lchm-font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
.lchm-top-nav {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.lchm-nav-container,
.lchm-showcase-container,
.lchm-section-container,
.lchm-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.lchm-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lchm-logo-abbr {
    font-family: var(--lchm-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lchm-accent);
    letter-spacing: 2px;
    border: 2px solid var(--lchm-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.lchm-brand-info {
    display: flex;
    flex-direction: column;
}

.lchm-brand-name {
    font-family: var(--lchm-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.lchm-brand-sub {
    font-size: 0.8rem;
    color: var(--lchm-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lchm-badge {
    background-color: var(--lchm-accent);
    color: var(--lchm-bg);
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Hero Showcase */
.lchm-showcase {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #112240 0%, #0A192F 100%);
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.lchm-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.03) 0px,
        rgba(212, 175, 55, 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
    pointer-events: none;
}

.lchm-showcase-container {
    position: relative;
    z-index: 2;
}

.lchm-showcase-kicker {
    display: inline-block;
    color: var(--lchm-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--lchm-accent);
    padding-bottom: 0.5rem;
}

.lchm-showcase-title {
    font-family: var(--lchm-font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--lchm-text);
}

.lchm-showcase-desc {
    font-size: 1.2rem;
    color: var(--lchm-text-muted);
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.lchm-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lchm-info-card {
    background-color: rgba(17, 34, 64, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.lchm-info-title {
    display: block;
    font-family: var(--lchm-font-heading);
    font-size: 1.5rem;
    color: var(--lchm-accent);
    margin-bottom: 1rem;
}

.lchm-info-text {
    font-size: 0.95rem;
    color: var(--lchm-text-muted);
}

/* Sections Common */
.lchm-wellbeing-area,
.lchm-gaming-area {
    padding: 6rem 0;
}

.lchm-gaming-area {
    background-color: var(--lchm-bg-alt);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.lchm-section-header {
    font-family: var(--lchm-font-heading);
    font-size: 3rem;
    color: var(--lchm-text);
    margin-bottom: 1rem;
    text-align: center;
}

.lchm-section-intro {
    text-align: center;
    color: var(--lchm-text-muted);
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

.lchm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.lchm-feature-card {
    background-color: var(--lchm-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.lchm-gaming-area .lchm-feature-card {
    background-color: #0d1e38;
}

.lchm-feature-card:hover {
    border-color: var(--lchm-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lchm-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--lchm-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.lchm-feature-card:hover::before {
    transform: scaleY(1);
}

.lchm-card-kicker {
    color: var(--lchm-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.lchm-card-title {
    font-family: var(--lchm-font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.lchm-card-text {
    color: var(--lchm-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.lchm-card-list {
    list-style: none;
}

.lchm-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.lchm-card-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--lchm-accent);
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer */
.lchm-page-footer {
    padding: 6rem 0 3rem 0;
    background-color: var(--lchm-bg);
}

.lchm-footer-heading {
    font-family: var(--lchm-font-heading);
    font-size: 2.5rem;
    color: var(--lchm-text);
    margin-bottom: 3rem;
    text-align: center;
}

.lchm-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.lchm-footer-col p {
    color: var(--lchm-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.lchm-footer-col strong {
    color: var(--lchm-accent);
}

.lchm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.lchm-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lchm-contact-item {
    color: var(--lchm-text-muted);
    font-size: 0.95rem;
}

.lchm-contact-item strong {
    color: var(--lchm-accent);
    margin-right: 0.5rem;
}

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

.lchm-nav-links a {
    color: var(--lchm-text);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.lchm-nav-links a:hover {
    color: var(--lchm-accent);
}

/* Responsive */
@media (max-width: 992px) {
    .lchm-showcase-title {
        font-size: 3.5rem;
    }
    .lchm-info-grid,
    .lchm-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lchm-footer-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .lchm-nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .lchm-showcase-title {
        font-size: 2.5rem;
    }
    .lchm-info-grid,
    .lchm-card-grid {
        grid-template-columns: 1fr;
    }
    .lchm-footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .lchm-nav-links {
        flex-wrap: wrap;
    }
}
