:root {
    --schwb-bg: #0d0d0d;
    --schwb-bg-light: #161616;
    --schwb-bg-card: #1a1a1a;
    --schwb-primary: #d4af37;
    --schwb-primary-dark: #b5952f;
    --schwb-accent: #7a1f28;
    --schwb-text: #e8e8e8;
    --schwb-text-muted: #a0a0a0;
    --schwb-border: #333333;
    --schwb-font-heading: 'Playfair Display', serif;
    --schwb-font-body: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.schwb-body {
    margin: 0;
    padding: 0;
    background-color: var(--schwb-bg);
    color: var(--schwb-text);
    font-family: var(--schwb-font-body);
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Header */
.schwb-top-nav {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid var(--schwb-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.schwb-brand-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schwb-logo-text {
    font-family: var(--schwb-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--schwb-primary);
    border: 2px solid var(--schwb-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

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

.schwb-brand-main {
    font-family: var(--schwb-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.schwb-brand-sub {
    font-size: 0.8rem;
    color: var(--schwb-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schwb-badge-18 {
    border: 1px solid var(--schwb-accent);
    color: var(--schwb-accent);
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.schwb-hero-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at top right, var(--schwb-bg-light), var(--schwb-bg));
    border-bottom: 1px solid var(--schwb-border);
    text-align: center;
}

.schwb-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.schwb-hero-title {
    font-family: var(--schwb-font-heading);
    font-size: 4rem;
    color: #fff;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
}

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

.schwb-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.schwb-info-card {
    background: var(--schwb-bg-card);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--schwb-primary);
    transition: transform 0.3s ease;
}

.schwb-info-card:hover {
    transform: translateY(-5px);
}

.schwb-info-title {
    font-family: var(--schwb-font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.schwb-info-text {
    margin: 0;
    color: var(--schwb-text-muted);
    font-size: 0.95rem;
}

/* Container */
.schwb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

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

/* Features Grid */
.schwb-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.schwb-feature-card {
    background: var(--schwb-bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--schwb-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.schwb-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.schwb-card-dark::before {
    background: var(--schwb-primary);
}

.schwb-kicker {
    display: inline-block;
    color: var(--schwb-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.schwb-feature-title {
    font-family: var(--schwb-font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 1rem 0;
}

.schwb-feature-desc {
    color: var(--schwb-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.schwb-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schwb-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.schwb-feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--schwb-primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Sections specific background */
.schwb-wellbeing-section {
    background: var(--schwb-bg);
}

.schwb-gaming-section {
    background: var(--schwb-bg-light);
    border-top: 1px solid var(--schwb-border);
}

/* Footer */
.schwb-bottom-bar {
    background: #050505;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 2px solid var(--schwb-primary);
}

.schwb-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.schwb-footer-slogan {
    font-family: var(--schwb-font-heading);
    font-size: 2rem;
    color: var(--schwb-primary);
    text-align: center;
    margin: 0 0 3rem 0;
}

.schwb-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.schwb-footer-address {
    font-style: normal;
    color: var(--schwb-text-muted);
    font-size: 0.9rem;
}

.schwb-footer-address p {
    margin: 0 0 0.5rem 0;
}

.schwb-footer-nav {
    border-top: 1px solid var(--schwb-border);
    padding-top: 2rem;
    text-align: center;
}

.schwb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 2rem;
}

.schwb-footer-links li a {
    color: var(--schwb-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.schwb-footer-links li a:hover {
    color: var(--schwb-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .schwb-hero-grid,
    .schwb-features-grid,
    .schwb-footer-columns {
        grid-template-columns: 1fr;
    }
    
    .schwb-hero-title {
        font-size: 2.5rem;
    }
}
