:root {
    --vshv-primary: #D4AF37; /* Gold */
    --vshv-bg-dark: #121212;
    --vshv-bg-panel: #1A1A1A;
    --vshv-accent: #5B1824; /* Burgundy */
    --vshv-text-light: #F5F5F5;
    --vshv-text-muted: #A0A0A0;
    --vshv-font-heading: 'Playfair Display', serif;
    --vshv-font-body: 'Lato', sans-serif;
    --vshv-radius: 8px;
    --vshv-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Cookie Banner */
.vshv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--vshv-accent);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    border-top: 1px solid var(--vshv-primary);
}

.vshv-cookie-text {
    font-size: 0.9rem;
    margin: 0;
}

.vshv-cookie-btn {
    background: var(--vshv-primary);
    color: var(--vshv-bg-dark);
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--vshv-font-body);
}

/* Header */
.vshv-masthead {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.vshv-masthead-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vshv-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--vshv-primary);
    border-radius: 50%;
}

.vshv-logo-abbr {
    font-family: var(--vshv-font-heading);
    font-size: 1.5rem;
    color: var(--vshv-primary);
    font-weight: bold;
}

.vshv-brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vshv-brand-name {
    font-family: var(--vshv-font-heading);
    font-size: 1.8rem;
    color: var(--vshv-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vshv-brand-sub {
    font-size: 0.85rem;
    color: var(--vshv-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.vshv-badge {
    border: 1px solid var(--vshv-primary);
    color: var(--vshv-primary);
    padding: 5px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

/* Hero Section */
.vshv-hero-sec {
    background: linear-gradient(135deg, var(--vshv-bg-dark) 0%, var(--vshv-accent) 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 2px solid var(--vshv-primary);
}

.vshv-hero-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.vshv-hero-kicker {
    display: inline-block;
    color: var(--vshv-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.vshv-hero-title {
    font-family: var(--vshv-font-heading);
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--vshv-text-light);
    line-height: 1.2;
}

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

.vshv-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vshv-hero-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 20px;
    border-radius: var(--vshv-radius);
    transition: var(--vshv-transition);
}

.vshv-hero-card:hover {
    border-color: var(--vshv-primary);
    transform: translateY(-5px);
    background: rgba(26, 26, 26, 0.9);
}

.vshv-hcard-title {
    font-family: var(--vshv-font-heading);
    color: var(--vshv-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.vshv-hcard-text {
    font-size: 0.95rem;
    color: var(--vshv-text-muted);
}

/* Sections */
.vshv-section {
    padding: 100px 20px;
}

.vshv-resp-sec {
    background: var(--vshv-bg-dark);
}

.vshv-game-sec {
    background: var(--vshv-bg-panel);
}

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

.vshv-sec-title {
    font-family: var(--vshv-font-heading);
    font-size: 2.8rem;
    text-align: center;
    color: var(--vshv-primary);
    margin-bottom: 20px;
}

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

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

.vshv-feat-card {
    background: var(--vshv-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--vshv-radius);
    position: relative;
    overflow: hidden;
    transition: var(--vshv-transition);
}

.vshv-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--vshv-accent);
    transition: var(--vshv-transition);
}

.vshv-feat-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.vshv-feat-card:hover::before {
    background: var(--vshv-primary);
}

.vshv-feat-kicker {
    display: block;
    color: var(--vshv-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vshv-feat-title {
    font-family: var(--vshv-font-heading);
    font-size: 1.5rem;
    color: var(--vshv-text-light);
    margin-bottom: 15px;
}

.vshv-feat-desc {
    font-size: 0.95rem;
    color: var(--vshv-text-muted);
    margin-bottom: 20px;
}

.vshv-feat-list {
    list-style: none;
}

.vshv-feat-list li {
    font-size: 0.9rem;
    color: var(--vshv-text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vshv-feat-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--vshv-primary);
    font-size: 0.8rem;
}

/* Footer */
.vshv-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 20px 20px 20px;
}

.vshv-footer-top {
    text-align: center;
    margin-bottom: 60px;
}

.vshv-footer-slogan {
    font-family: var(--vshv-font-heading);
    font-size: 2.2rem;
    color: var(--vshv-primary);
}

.vshv-footer-grid {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.vshv-foot-title {
    font-family: var(--vshv-font-heading);
    font-size: 1.2rem;
    color: var(--vshv-text-light);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.vshv-foot-text {
    font-size: 0.9rem;
    color: var(--vshv-text-muted);
    margin-bottom: 15px;
}

.vshv-mt-4 {
    margin-top: 30px;
}

.vshv-foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    color: var(--vshv-text-muted);
}

.vshv-foot-link {
    color: var(--vshv-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--vshv-transition);
    cursor: pointer;
}

.vshv-foot-link:hover {
    color: var(--vshv-text-light);
}

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

/* Responsive */
@media (max-width: 992px) {
    .vshv-hero-grid, .vshv-grid-three, .vshv-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vshv-brand-name { font-size: 1.4rem; }
}

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