@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --cwth-bg: #0a0a0a;
    --cwth-surface: #141414;
    --cwth-surface-alt: #1a1515;
    --cwth-primary: #d4af37;
    --cwth-primary-glow: rgba(212, 175, 55, 0.15);
    --cwth-accent: #7a1b1b;
    --cwth-text: #f0f0f0;
    --cwth-text-muted: #a0a0a0;
    --cwth-border: #2a2a2a;
    --cwth-font-head: 'Cinzel', serif;
    --cwth-font-body: 'Montserrat', sans-serif;
    --cwth-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cwth-font-head);
    font-weight: 400;
    color: var(--cwth-primary);
}

a {
    color: var(--cwth-primary);
    text-decoration: none;
    transition: var(--cwth-transition);
}

a:hover {
    color: #fff;
}

/* Header */
.cwth-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--cwth-border);
    z-index: 1000;
}

.cwth-nav-brand {
    display: flex;
    flex-direction: column;
}

.cwth-nav-logo {
    font-family: var(--cwth-font-head);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cwth-primary);
    text-shadow: 0 0 10px var(--cwth-primary-glow);
}

.cwth-nav-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--cwth-text-muted);
    text-transform: uppercase;
}

.cwth-nav-badge {
    padding: 8px 16px;
    border: 1px solid var(--cwth-primary);
    border-radius: 4px;
    font-family: var(--cwth-font-head);
    font-weight: 600;
    color: var(--cwth-primary);
    background: rgba(212, 175, 55, 0.05);
    letter-spacing: 1px;
}

/* Hero Section */
.cwth-showcase {
    padding: 180px 40px 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--cwth-surface-alt) 0%, var(--cwth-bg) 70%);
    position: relative;
}

.cwth-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cwth-primary), transparent);
    opacity: 0.3;
}

.cwth-showcase-kicker {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cwth-primary);
    margin-bottom: 20px;
}

.cwth-showcase-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cwth-showcase-desc {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--cwth-text-muted);
    margin-bottom: 60px;
}

.cwth-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.cwth-showcase-card {
    background: var(--cwth-surface);
    padding: 40px 30px;
    border: 1px solid var(--cwth-border);
    border-radius: 8px;
    transition: var(--cwth-transition);
    position: relative;
    overflow: hidden;
}

.cwth-showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cwth-primary);
    transform: scaleX(0);
    transition: var(--cwth-transition);
    transform-origin: left;
}

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

.cwth-showcase-card:hover::after {
    transform: scaleX(1);
}

.cwth-card-heading {
    font-family: var(--cwth-font-head);
    font-size: 1.2rem;
    color: var(--cwth-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Common Section Styles */
.cwth-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cwth-section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.cwth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Feature Boxes */
.cwth-feature-box {
    background: linear-gradient(145deg, var(--cwth-surface), var(--cwth-bg));
    border: 1px solid var(--cwth-border);
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    transition: var(--cwth-transition);
}

.cwth-feature-box:hover {
    border-color: var(--cwth-primary);
    box-shadow: 0 0 40px var(--cwth-primary-glow);
}

.cwth-box-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cwth-accent);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.cwth-box-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cwth-box-text {
    color: var(--cwth-text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.cwth-box-list {
    list-style: none;
}

.cwth-box-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
}

.cwth-box-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--cwth-primary);
    font-size: 0.8rem;
}

/* Alternating background for sections */
#gaming {
    background: linear-gradient(to bottom, var(--cwth-bg), var(--cwth-surface-alt));
    border-top: 1px solid var(--cwth-border);
    border-bottom: 1px solid var(--cwth-border);
}

/* Footer */
.cwth-bottom-bar {
    background: #050505;
    padding: 80px 40px 40px;
    border-top: 1px solid var(--cwth-primary);
}

.cwth-footer-slogan {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--cwth-primary);
    letter-spacing: 3px;
}

.cwth-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.cwth-footer-desc h4, .cwth-footer-compliance h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.cwth-footer-desc p, .cwth-footer-compliance p {
    color: var(--cwth-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cwth-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--cwth-border);
}

.cwth-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.cwth-contact-item strong {
    color: var(--cwth-primary);
    font-weight: 500;
    margin-right: 10px;
}

.cwth-footer-nav {
    display: flex;
    gap: 30px;
}

.cwth-footer-nav a {
    font-family: var(--cwth-font-head);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .cwth-showcase-grid, .cwth-grid, .cwth-footer-cols {
        grid-template-columns: 1fr;
    }
    
    .cwth-showcase-title {
        font-size: 3rem;
    }
    
    .cwth-footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cwth-top-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .cwth-showcase {
        padding-top: 150px;
    }
}
