:root {
    --crzr-bg-main: #0a0a0a;
    --crzr-bg-surface: #171717;
    --crzr-bg-elevated: #242424;
    --crzr-c-primary: #8a1538;
    --crzr-c-primary-hover: #b01b47;
    --crzr-c-gold: #d4af37;
    --crzr-c-gold-muted: #aa8a29;
    --crzr-c-text: #f0f0f0;
    --crzr-c-text-muted: #a0a0a0;
    --crzr-font-heading: 'Playfair Display', serif;
    --crzr-font-body: 'Lato', sans-serif;
    --crzr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--crzr-bg-main);
    color: var(--crzr-c-text);
    font-family: var(--crzr-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.crzr-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.crzr-top-bar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.crzr-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.crzr-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crzr-logo-text {
    font-family: var(--crzr-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--crzr-c-gold);
    border: 2px solid var(--crzr-c-gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

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

.crzr-brand-main {
    font-family: var(--crzr-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--crzr-c-text);
    line-height: 1.2;
}

.crzr-brand-sub {
    font-size: 12px;
    color: var(--crzr-c-gold-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.crzr-badge-age {
    border: 1px solid var(--crzr-c-primary);
    color: var(--crzr-c-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

/* Hero Section */
.crzr-hero-showcase {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--crzr-bg-surface) 0%, var(--crzr-bg-main) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.crzr-hero-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(138, 21, 56, 0.1);
    color: var(--crzr-c-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(138, 21, 56, 0.3);
}

.crzr-hero-title {
    font-family: var(--crzr-font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--crzr-c-text);
}

.crzr-hero-desc {
    font-size: 20px;
    color: var(--crzr-c-text-muted);
    max-width: 700px;
    margin-bottom: 64px;
    font-weight: 300;
}

.crzr-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
}

.crzr-hero-info {
    background-color: var(--crzr-bg-elevated);
    padding: 24px;
    border-radius: 8px;
    border-left: 3px solid var(--crzr-c-gold);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crzr-info-kicker {
    font-size: 11px;
    color: var(--crzr-c-gold-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.crzr-info-val {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--crzr-font-heading);
}

/* Sections */
.crzr-section-wellbeing,
.crzr-section-gaming {
    padding: 100px 0;
}

.crzr-section-gaming {
    background-color: var(--crzr-bg-surface);
}

.crzr-section-heading {
    font-family: var(--crzr-font-heading);
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--crzr-c-text);
}

.crzr-section-intro {
    font-size: 18px;
    color: var(--crzr-c-text-muted);
    max-width: 600px;
    margin-bottom: 56px;
}

.crzr-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.crzr-feature-box {
    background-color: var(--crzr-bg-surface);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--crzr-transition);
}

.crzr-feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.crzr-feature-dark {
    background-color: var(--crzr-bg-elevated);
}

.crzr-box-kicker {
    font-size: 12px;
    color: var(--crzr-c-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
}

.crzr-box-title {
    font-family: var(--crzr-font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--crzr-c-gold);
}

.crzr-box-text {
    font-size: 15px;
    color: var(--crzr-c-text-muted);
    margin-bottom: 24px;
}

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

.crzr-box-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--crzr-c-text);
}

.crzr-box-list li::before {
    content: "•";
    color: var(--crzr-c-primary);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1.2;
}

/* Footer */
.crzr-footer-area {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.crzr-footer-slogan h2 {
    font-family: var(--crzr-font-heading);
    font-size: 48px;
    color: var(--crzr-c-gold);
    margin-bottom: 64px;
    text-align: center;
}

.crzr-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.crzr-footer-title {
    font-family: var(--crzr-font-heading);
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--crzr-c-text);
}

.crzr-footer-text {
    font-size: 14px;
    color: var(--crzr-c-text-muted);
    margin-bottom: 12px;
}

.crzr-contact-col strong {
    color: var(--crzr-c-gold);
    font-weight: 400;
}

.crzr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.crzr-footer-nav {
    display: flex;
    gap: 24px;
}

.crzr-nav-link {
    color: var(--crzr-c-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--crzr-transition);
}

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

.crzr-footer-copy {
    font-size: 13px;
    color: var(--crzr-c-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .crzr-hero-grid,
    .crzr-cards-grid,
    .crzr-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .crzr-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .crzr-hero-grid,
    .crzr-cards-grid,
    .crzr-footer-content {
        grid-template-columns: 1fr;
    }
    .crzr-hero-showcase {
        padding: 80px 0 60px;
    }
    .crzr-section-wellbeing,
    .crzr-section-gaming {
        padding: 60px 0;
    }
    .crzr-footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .crzr-hero-title {
        font-size: 40px;
    }
    .crzr-footer-slogan h2 {
        font-size: 36px;
    }
}
