:root {
    --hwth-c-bg: #0a0e17;
    --hwth-c-surface: #131a2a;
    --hwth-c-surface-light: #1c263c;
    --hwth-c-gold: #d4af37;
    --hwth-c-gold-hover: #f1c94f;
    --hwth-c-text-main: #e2e8f0;
    --hwth-c-text-muted: #94a3b8;
    
    --hwth-f-heading: 'Didot', 'Bodoni MT', 'Georgia', serif;
    --hwth-f-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --hwth-space-sm: 1rem;
    --hwth-space-md: 2rem;
    --hwth-space-lg: 4rem;
    --hwth-space-xl: 6rem;
}

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

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

html {
    scroll-behavior: smooth;
}

/* Header */
.hwth-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 14, 23, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.hwth-logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hwth-logo-abbr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--hwth-c-gold);
    color: var(--hwth-c-gold);
    font-family: var(--hwth-f-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 4px;
}

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

.hwth-brand-name {
    font-family: var(--hwth-f-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hwth-c-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hwth-brand-sub {
    font-size: 0.75rem;
    color: var(--hwth-c-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hwth-badge-wrap {
    display: inline-flex;
}

.hwth-badge-text {
    border: 1px solid var(--hwth-c-gold);
    color: var(--hwth-c-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Main Content */
.hwth-main-content {
    padding-top: 80px;
}

/* Typography shared */
.hwth-sec-title {
    font-family: var(--hwth-f-heading);
    font-size: 2.5rem;
    color: var(--hwth-c-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hwth-sec-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--hwth-space-lg) auto;
    color: var(--hwth-c-text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hwth-hero-stage {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, var(--hwth-c-surface-light) 0%, var(--hwth-c-bg) 70%);
    padding: var(--hwth-space-xl) 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hwth-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.hwth-hero-title {
    font-family: var(--hwth-f-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.hwth-hero-desc {
    font-size: 1.25rem;
    color: var(--hwth-c-text-muted);
    max-width: 800px;
    margin: 0 auto var(--hwth-space-lg) auto;
}

.hwth-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--hwth-space-lg);
}

.hwth-h-card {
    background-color: var(--hwth-c-surface);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hwth-h-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.4);
}

.hwth-hc-title {
    font-family: var(--hwth-f-heading);
    font-size: 1.5rem;
    color: var(--hwth-c-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hwth-hc-text {
    color: var(--hwth-c-text-muted);
}

/* Sections Shared */
.hwth-resp-stage,
.hwth-game-stage {
    padding: var(--hwth-space-xl) 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hwth-game-stage {
    background-color: var(--hwth-c-surface);
}

.hwth-resp-container,
.hwth-game-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hwth-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hwth-card-box {
    background-color: var(--hwth-c-bg);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.hwth-card-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.hwth-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hwth-c-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hwth-card-box:hover::before {
    opacity: 1;
}

.hwth-card-box.hwth-dark {
    background-color: var(--hwth-c-surface-light);
}

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

.hwth-cb-title {
    font-family: var(--hwth-f-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

.hwth-cb-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--hwth-c-text-main);
    font-size: 0.95rem;
}

.hwth-cb-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--hwth-c-gold);
    font-size: 0.8rem;
    top: 3px;
}

/* Footer */
.hwth-base {
    background-color: var(--hwth-c-bg);
    padding: var(--hwth-space-xl) 2rem 2rem 2rem;
    border-top: 2px solid var(--hwth-c-gold);
}

.hwth-base-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hwth-base-top {
    text-align: center;
    margin-bottom: var(--hwth-space-lg);
}

.hwth-base-slogan {
    font-family: var(--hwth-f-heading);
    font-size: 2.5rem;
    color: var(--hwth-c-gold);
    font-weight: 400;
}

.hwth-base-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--hwth-space-lg);
}

.hwth-bcol-title {
    font-family: var(--hwth-f-heading);
    font-size: 1.25rem;
    color: var(--hwth-c-text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 400;
}

.hwth-bcol-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--hwth-c-gold);
}

.hwth-bcol-text {
    color: var(--hwth-c-text-muted);
    font-size: 0.95rem;
}

.hwth-bcol-contact {
    list-style: none;
}

.hwth-bcol-contact li {
    color: var(--hwth-c-text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.hwth-bcol-contact strong {
    color: var(--hwth-c-text-main);
    font-weight: 600;
}

.hwth-bcol-nav {
    list-style: none;
}

.hwth-bcol-nav li {
    margin-bottom: 0.5rem;
}

.hwth-nav-link {
    color: var(--hwth-c-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hwth-nav-link:hover {
    color: var(--hwth-c-gold);
}

.hwth-base-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--hwth-c-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hwth-hero-title {
        font-size: 2.5rem;
    }
    .hwth-sec-title {
        font-size: 2rem;
    }
}
