/* ROOT VARIABLES - Crimson Heath Theme */
:root {
    --crhh-primary: #8a1c1c; /* Crimson / Ruby Red */
    --crhh-primary-hover: #a52323;
    --crhh-secondary: #d4af37; /* Metallic Gold */
    --crhh-bg-dark: #0f0f11;
    --crhh-bg-surface: #1a1a1d;
    --crhh-bg-surface-light: #25252a;
    --crhh-text-main: #f4f4f5;
    --crhh-text-muted: #a1a1aa;
    
    --crhh-font-heading: 'Playfair Display', serif;
    --crhh-font-body: 'Outfit', sans-serif;
    
    --crhh-radius-sm: 4px;
    --crhh-radius-md: 8px;
    --crhh-radius-lg: 16px;
    --crhh-radius-full: 9999px;
    
    --crhh-transition: all 0.3s ease;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.crhh-page-body {
    font-family: var(--crhh-font-body);
    background-color: var(--crhh-bg-dark);
    color: var(--crhh-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--crhh-transition);
}

/* HEADER */
.crhh-masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 15, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.crhh-masthead-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crhh-brand-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crhh-logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--crhh-primary), #4a0a0a);
    color: var(--crhh-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--crhh-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--crhh-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.crhh-brand-text {
    display: flex;
    flex-direction: column;
}

.crhh-brand-name {
    font-family: var(--crhh-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--crhh-text-main);
    letter-spacing: 0.5px;
}

.crhh-brand-subtitle {
    font-size: 0.75rem;
    color: var(--crhh-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crhh-badge-wrap {
    display: flex;
    align-items: center;
}

.crhh-exclusive-badge {
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--crhh-secondary);
    color: var(--crhh-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--crhh-radius-full);
}

/* HERO SECTION */
.crhh-hero-stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--crhh-bg-surface) 0%, var(--crhh-bg-dark) 100%);
}

.crhh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 17, 0.7), rgba(15, 15, 17, 0.95));
}

.crhh-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
}

.crhh-hero-kicker {
    display: inline-block;
    color: var(--crhh-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    position: relative;
}

.crhh-hero-kicker::before,
.crhh-hero-kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--crhh-secondary);
}

.crhh-hero-kicker::before {
    right: 100%;
    margin-right: 15px;
}

.crhh-hero-kicker::after {
    left: 100%;
    margin-left: 15px;
}

.crhh-hero-title {
    font-family: var(--crhh-font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.crhh-hero-info-box {
    background: rgba(26, 26, 29, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--crhh-radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 3px solid var(--crhh-primary);
    transition: var(--crhh-transition);
}

.crhh-hero-info-box:hover {
    transform: translateY(-5px);
    background: rgba(26, 26, 29, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
}

.crhh-info-title {
    color: var(--crhh-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crhh-info-detail {
    color: var(--crhh-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* SECTION GLOBAL */
.crhh-wellbeing-zone,
.crhh-gaming-zone {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.crhh-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.crhh-section-title {
    font-family: var(--crhh-font-heading);
    font-size: 2.5rem;
    color: var(--crhh-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.crhh-section-intro {
    color: var(--crhh-text-muted);
    font-size: 1.125rem;
}

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

/* CARDS */
.crhh-feature-card {
    background: var(--crhh-bg-surface);
    padding: 3rem 2rem;
    border-radius: var(--crhh-radius-lg);
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--crhh-transition);
    position: relative;
    overflow: hidden;
}

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

.crhh-feature-card:hover {
    background: var(--crhh-bg-surface-light);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.crhh-feature-card:hover::before {
    transform: scaleX(1);
}

.crhh-card-kicker {
    display: inline-block;
    color: var(--crhh-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.crhh-card-title {
    font-family: var(--crhh-font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--crhh-text-main);
}

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

.crhh-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crhh-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d4d4d8;
    font-size: 0.95rem;
}

.crhh-card-list li::before {
    content: '→';
    color: var(--crhh-primary);
    font-weight: bold;
}

.crhh-dark-card {
    background: #141416;
    border-color: rgba(212, 175, 55, 0.1);
}
.crhh-dark-card:hover {
    background: #1c1c1f;
}

/* COMPLIANCE BLOCK */
.crhh-compliance-container {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.crhh-compliance-inner {
    background: rgba(138, 28, 28, 0.05);
    border: 1px solid rgba(138, 28, 28, 0.2);
    border-radius: var(--crhh-radius-lg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.crhh-compliance-badge {
    width: 44px;
    height: 44px;
    border: 2px solid var(--crhh-primary);
    color: var(--crhh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.crhh-compliance-text {
    color: var(--crhh-text-muted);
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.6;
}

.crhh-text-highlight {
    font-weight: 700;
    color: var(--crhh-primary);
}

.crhh-compliance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.crhh-compliance-logos a {
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.crhh-compliance-logos a:hover {
    opacity: 1;
}

.crhh-compliance-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.2);
}

/* FOOTER */
.crhh-main-footer {
    background: #080809;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 6rem 2rem 2rem;
}

.crhh-footer-top {
    text-align: center;
    margin-bottom: 5rem;
}

.crhh-footer-slogan {
    font-family: var(--crhh-font-heading);
    font-size: 2.5rem;
    color: var(--crhh-secondary);
    font-style: italic;
}

.crhh-footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.crhh-footer-title {
    font-family: var(--crhh-font-heading);
    color: var(--crhh-text-main);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.crhh-contact-list,
.crhh-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crhh-contact-list li {
    color: var(--crhh-text-muted);
    font-size: 0.9rem;
}

.crhh-contact-list strong {
    color: var(--crhh-secondary);
}

.crhh-nav-links a {
    color: var(--crhh-text-muted);
    font-size: 0.9rem;
}

.crhh-nav-links a:hover {
    color: var(--crhh-primary);
    padding-left: 5px;
}

.crhh-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: rgba(161, 161, 170, 0.5);
    font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .crhh-hero-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .crhh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .crhh-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .crhh-hero-title {
        font-size: 2.5rem;
    }
    
    .crhh-masthead-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .crhh-compliance-logos {
        gap: 2rem;
    }
    
    .crhh-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* COOKIE BANNER */
.crhh-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--crhh-bg-surface);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: var(--crhh-radius-md);
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.crhh-cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.crhh-cookie-content p {
    color: var(--crhh-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.crhh-cookie-content a {
    color: var(--crhh-secondary);
}

.crhh-cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.crhh-cookie-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: var(--crhh-radius-sm);
    font-family: var(--crhh-font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--crhh-transition);
}

.crhh-btn-accept {
    background: var(--crhh-secondary);
    color: var(--crhh-bg-dark);
}

.crhh-btn-accept:hover {
    background: #e6c855;
}

.crhh-btn-reject {
    background: transparent;
    border: 1px solid var(--crhh-text-muted);
    color: var(--crhh-text-muted);
}

.crhh-btn-reject:hover {
    border-color: var(--crhh-text-main);
    color: var(--crhh-text-main);
}

@media (max-width: 768px) {
    .crhh-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* LEGAL PAGES & MODALS */
.crhh-legal-page { padding: 10rem 2rem 5rem; max-width: 1000px; margin: 0 auto; }
.crhh-legal-content h1 { font-family: var(--crhh-font-heading); color: var(--crhh-secondary); font-size: 2.5rem; margin-bottom: 2rem; }
.crhh-legal-content h2 { font-family: var(--crhh-font-heading); color: var(--crhh-text-main); font-size: 1.5rem; margin: 2rem 0 1rem; }
.crhh-legal-content p, .crhh-legal-content ul { color: var(--crhh-text-muted); font-size: 1rem; margin-bottom: 1rem; }
.crhh-legal-content ul { padding-left: 2rem; list-style-type: disc; }

.crhh-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.crhh-modal-box {
    background: var(--crhh-bg-surface);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--crhh-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.crhh-modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--crhh-text-muted);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--crhh-transition);
    text-decoration: none;
}

.crhh-modal-close-btn:hover {
    color: var(--crhh-primary);
}

@media (max-width: 768px) {
    .crhh-modal-box {
        padding: 2rem;
    }
}

