:root {
    --thcr-bg-dark: #050a15;
    --thcr-bg-card: #0d1b2a;
    --thcr-bg-alt: #081121;
    --thcr-gold: #cda434;
    --thcr-gold-light: #e5c365;
    --thcr-text-main: #e0e1dd;
    --thcr-text-muted: #778da9;
    --thcr-font-heading: Georgia, 'Times New Roman', serif;
    --thcr-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --thcr-radius: 6px;
    --thcr-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
.thcr-top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 10, 21, 0.95);
    border-bottom: 1px solid rgba(205, 164, 52, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

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

.thcr-brand-cluster {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thcr-logo-mark {
    font-family: var(--thcr-font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--thcr-gold);
    border: 2px solid var(--thcr-gold);
    padding: 0.25rem 0.5rem;
    border-radius: var(--thcr-radius);
}

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

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

.thcr-brand-sub {
    font-size: 0.85rem;
    color: var(--thcr-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thcr-age-badge {
    display: inline-block;
    border: 2px solid var(--thcr-gold);
    color: var(--thcr-gold);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
}

/* Hero Showcase */
.thcr-main-content {
    padding-top: 100px;
}

.thcr-hero-showcase {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #050a15 0%, #0d1b2a 100%);
    position: relative;
    border-bottom: 1px solid rgba(205, 164, 52, 0.1);
}

.thcr-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.thcr-hero-label {
    display: inline-block;
    color: var(--thcr-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--thcr-gold);
    padding-bottom: 0.25rem;
}

.thcr-hero-title {
    font-family: var(--thcr-font-heading);
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.thcr-hero-desc {
    font-size: 1.2rem;
    color: var(--thcr-text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thcr-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.thcr-stat-box {
    background-color: var(--thcr-bg-card);
    padding: 1.5rem 2.5rem;
    border-radius: var(--thcr-radius);
    border: 1px solid rgba(205, 164, 52, 0.2);
    min-width: 200px;
}

.thcr-stat-heading {
    display: block;
    color: var(--thcr-text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.thcr-stat-value {
    display: block;
    color: var(--thcr-gold-light);
    font-size: 1.5rem;
    font-family: var(--thcr-font-heading);
}

/* Info Sections */
.thcr-info-section {
    padding: 6rem 2rem;
}

.thcr-alt-bg {
    background-color: var(--thcr-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thcr-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.thcr-detail-card {
    background-color: var(--thcr-bg-card);
    padding: 2.5rem;
    border-radius: var(--thcr-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--thcr-transition);
}

.thcr-detail-card:hover {
    border-color: rgba(205, 164, 52, 0.3);
    transform: translateY(-5px);
}

.thcr-card-kicker {
    color: var(--thcr-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

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

.thcr-card-text {
    color: var(--thcr-text-muted);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.thcr-card-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.thcr-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--thcr-text-main);
}

.thcr-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--thcr-gold);
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer */
.thcr-bottom-area {
    background-color: var(--thcr-bg-dark);
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(205, 164, 52, 0.2);
}

.thcr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.thcr-footer-slogan {
    font-family: var(--thcr-font-heading);
    font-size: 2rem;
    color: var(--thcr-gold);
    text-align: center;
    margin-bottom: 4rem;
}

.thcr-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.thcr-footer-heading {
    color: #fff;
    font-family: var(--thcr-font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.thcr-footer-text {
    color: var(--thcr-text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.thcr-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.thcr-footer-link {
    color: var(--thcr-text-muted);
    text-decoration: none;
    transition: var(--thcr-transition);
}

.thcr-footer-link:hover {
    color: var(--thcr-gold);
}

.thcr-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.thcr-copyright {
    color: var(--thcr-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .thcr-nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .thcr-brand-cluster {
        flex-direction: column;
    }
    .thcr-hero-title {
        font-size: 3rem;
    }
    .thcr-hero-stats {
        flex-direction: column;
    }
}
