/* 
  Theme: Dark Elegant
  Colors: 
  Background: #0a0b10
  Surface: #13151c
  Primary (Gold/Bronze): #d4af37
  Secondary (Deep Red): #5a151b
  Text: #e0e0e0
*/

:root {
    --edlh-bg-color: #0a0b10;
    --edlh-surface-color: #13151c;
    --edlh-primary-color: #d4af37;
    --edlh-primary-hover: #e5c35b;
    --edlh-secondary-color: #5a151b;
    --edlh-text-main: #e0e0e0;
    --edlh-text-muted: #9e9e9e;
    
    --edlh-font-heading: 'Cinzel', serif;
    --edlh-font-body: 'Jost', sans-serif;
    
    --edlh-radius: 4px;
    --edlh-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.edlh-page-wrapper {
    background-color: var(--edlh-bg-color);
    color: var(--edlh-text-main);
    font-family: var(--edlh-font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.edlh-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edlh-logo-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.edlh-logo-abbr {
    font-family: var(--edlh-font-heading);
    font-size: 1.5rem;
    color: var(--edlh-primary-color);
    border: 1px solid var(--edlh-primary-color);
    padding: 0.25rem 0.5rem;
    letter-spacing: 2px;
}

.edlh-brand-titles {
    display: flex;
    flex-direction: column;
}

.edlh-brand-name {
    font-family: var(--edlh-font-heading);
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.edlh-brand-sub {
    font-size: 0.8rem;
    color: var(--edlh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.edlh-age-badge {
    border: 1px solid var(--edlh-text-muted);
    color: var(--edlh-text-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Main Showcase */
.edlh-main-showcase {
    padding: 8rem 2rem 6rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: radial-gradient(circle at 50% 0%, #1a1c24 0%, var(--edlh-bg-color) 70%);
}

.edlh-showcase-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.edlh-showcase-label {
    display: inline-block;
    color: var(--edlh-primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.edlh-showcase-title {
    font-family: var(--edlh-font-heading);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.edlh-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background-color: var(--edlh-surface-color);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--edlh-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.edlh-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.edlh-item-title {
    color: var(--edlh-primary-color);
    font-family: var(--edlh-font-heading);
    font-size: 1.2rem;
}

.edlh-item-text {
    color: var(--edlh-text-main);
    font-size: 0.95rem;
}

/* Sections */
.edlh-wellness-zone, .edlh-gaming-zone {
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.edlh-gaming-zone {
    background-color: var(--edlh-surface-color);
}

.edlh-zone-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.edlh-zone-title {
    font-family: var(--edlh-font-heading);
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.edlh-info-box {
    background-color: var(--edlh-surface-color);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--edlh-radius);
    transition: var(--edlh-transition);
    position: relative;
    overflow: hidden;
}

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

.edlh-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--edlh-primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--edlh-transition);
}

.edlh-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.edlh-info-box:hover::before {
    transform: scaleX(1);
}

.edlh-box-kicker {
    display: block;
    color: var(--edlh-primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.edlh-box-title {
    font-family: var(--edlh-font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.edlh-box-desc {
    color: var(--edlh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 4rem;
}

.edlh-box-list {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.edlh-box-li {
    color: var(--edlh-text-main);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edlh-box-li::before {
    content: '◆';
    color: var(--edlh-primary-color);
    font-size: 0.6rem;
}

/* Footer */
.edlh-bottom-area {
    background-color: #050608;
    padding: 6rem 2rem 3rem;
    border-top: 1px solid var(--edlh-secondary-color);
}

.edlh-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.edlh-footer-slogan {
    text-align: center;
    margin-bottom: 4rem;
}

.edlh-footer-slogan h2 {
    font-family: var(--edlh-font-heading);
    font-size: 2.5rem;
    color: var(--edlh-primary-color);
}

.edlh-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.edlh-footer-desc, .edlh-footer-disclaimer {
    color: var(--edlh-text-muted);
    font-size: 0.9rem;
}

.edlh-footer-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.edlh-contact-item {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edlh-footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.edlh-nav-link {
    color: var(--edlh-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--edlh-transition);
}

.edlh-nav-link:hover {
    color: var(--edlh-primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .edlh-showcase-title {
        font-size: 3rem;
    }
    
    .edlh-showcase-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .edlh-info-grid {
        grid-template-columns: 1fr;
    }
    
    .edlh-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .edlh-footer-contacts {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Cookie Banner */
.edlh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--edlh-primary-color);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.edlh-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.edlh-cookie-inner p {
    color: var(--edlh-text-main);
    font-size: 0.9rem;
    margin: 0;
}

.edlh-cookie-btn {
    background-color: var(--edlh-primary-color);
    color: #0a0b10;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--edlh-radius);
    font-family: var(--edlh-font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--edlh-transition);
    white-space: nowrap;
}

.edlh-cookie-btn:hover {
    background-color: var(--edlh-primary-hover);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .edlh-cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
