/* VelveetCrownRoom.com - Premium Social Gaming Platform Styles */

/* CSS Variables */
:root {
    --vcr-velvet-plum: #160B1E;
    --vcr-burgundy-stage: #221028;
    --vcr-room-panel: #2B1432;
    --vcr-text: #FAF3FF;
    --vcr-muted: #D6C2E3;
    --vcr-gold: #F7C97A;
    --vcr-copper: #D47A4C;
    --vcr-satin: #0B0A0D;
    --vcr-lilac: #BDA8FF;
    --vcr-border: rgba(250, 243, 255, 0.10);
    --vcr-shadow-soft: 0 8px 32px rgba(11, 10, 13, 0.4);
    --vcr-shadow-medium: 0 12px 48px rgba(11, 10, 13, 0.5);
    --vcr-shadow-glow: 0 0 40px rgba(247, 201, 122, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, var(--vcr-velvet-plum) 0%, var(--vcr-burgundy-stage) 50%, var(--vcr-room-panel) 100%);
    color: var(--vcr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.vcr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .vcr-container {
        padding: 0 16px;
    }
}

/* Typography */
.vcr-section-title {
    font-family: 'Italiana', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--vcr-gold);
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.02em;
}

.vcr-section-subtitle {
    font-size: 18px;
    color: var(--vcr-muted);
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .vcr-section-title {
        font-size: 36px;
    }
    .vcr-section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* Buttons */
.vcr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.vcr-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vcr-btn:hover::before {
    opacity: 1;
}

.vcr-btn-gold {
    background: linear-gradient(135deg, var(--vcr-gold) 0%, var(--vcr-copper) 100%);
    color: var(--vcr-satin);
    box-shadow: 0 4px 16px rgba(247, 201, 122, 0.3);
}

.vcr-btn-gold:hover {
    box-shadow: 0 6px 24px rgba(247, 201, 122, 0.4);
    transform: translateY(-2px);
}

.vcr-btn-gold:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--vcr-lilac), 0 4px 16px rgba(247, 201, 122, 0.3);
}

.vcr-btn-ghost {
    background: transparent;
    color: var(--vcr-gold);
    border: 1px solid var(--vcr-gold);
}

.vcr-btn-ghost:hover {
    background: rgba(247, 201, 122, 0.1);
    transform: translateY(-2px);
}

.vcr-btn-ghost:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--vcr-lilac);
}

.vcr-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.vcr-btn-xl {
    padding: 20px 40px;
    font-size: 16px;
}

.vcr-btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.vcr-btn-icon {
    transition: transform 0.3s ease;
}

.vcr-btn:hover .vcr-btn-icon {
    transform: translateX(4px);
}

/* Links */
.vcr-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.vcr-link-muted {
    color: var(--vcr-muted);
}

.vcr-link-muted:hover {
    color: var(--vcr-gold);
}

/* Age Verification Overlay */
.vcr-age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 13, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: vcrFadeIn 0.5s ease;
}

.vcr-age-modal {
    background: linear-gradient(180deg, var(--vcr-room-panel) 0%, var(--vcr-burgundy-stage) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 16px;
    padding: 48px;
    max-width: 480px;
    text-align: center;
    box-shadow: var(--vcr-shadow-medium);
}

.vcr-age-crown {
    margin-bottom: 24px;
}

.vcr-age-title {
    font-family: 'Italiana', serif;
    font-size: 32px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-age-text {
    color: var(--vcr-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.vcr-age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cookie Banner */
.vcr-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    background: linear-gradient(180deg, var(--vcr-room-panel) 0%, var(--vcr-burgundy-stage) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 600px;
    width: calc(100% - 48px);
    box-shadow: var(--vcr-shadow-medium);
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcr-cookie-banner.vcr-visible {
    transform: translateX(-50%) translateY(0);
}

.vcr-cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vcr-cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-cookie-text {
    flex: 1;
}

.vcr-cookie-title {
    font-family: 'Italiana', serif;
    font-size: 18px;
    color: var(--vcr-gold);
    margin-bottom: 4px;
}

.vcr-cookie-desc {
    font-size: 14px;
    color: var(--vcr-muted);
}

.vcr-cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 640px) {
    .vcr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .vcr-cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Header */
.vcr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(22, 11, 30, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--vcr-border);
    transition: all 0.3s ease;
}

.vcr-header.vcr-scrolled {
    background: rgba(22, 11, 30, 0.95);
    box-shadow: var(--vcr-shadow-soft);
}

.vcr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.vcr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.vcr-logo-text {
    font-family: 'Italiana', serif;
    font-size: 24px;
    color: var(--vcr-gold);
    letter-spacing: 0.02em;
}

.vcr-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vcr-nav-link {
    color: var(--vcr-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.vcr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vcr-gold);
    transition: width 0.3s ease;
}

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

.vcr-nav-link:hover::after {
    width: 100%;
}

.vcr-nav-cta {
    display: none;
}

@media (min-width: 992px) {
    .vcr-nav-cta {
        display: inline-flex;
    }
}

@media (max-width: 991px) {
    .vcr-nav-links {
        display: none;
    }

    .vcr-nav-cta {
        display: none;
    }

    /* Burger Button */
    .vcr-burger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .vcr-burger span {
        width: 100%;
        height: 2px;
        background: var(--vcr-gold);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .vcr-burger.vcr-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .vcr-burger.vcr-active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .vcr-burger.vcr-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu */
    .vcr-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, rgba(22, 11, 30, 0.98) 0%, rgba(34, 16, 40, 0.98) 100%);
        backdrop-filter: blur(20px);
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .vcr-mobile-menu.vcr-active {
        opacity: 1;
        visibility: visible;
    }

    .vcr-mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        padding: 40px 24px;
    }

    .vcr-mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .vcr-mobile-nav-link {
        font-family: 'Italiana', serif;
        font-size: 32px;
        color: var(--vcr-text);
        text-decoration: none;
        transition: color 0.3s ease;
        text-align: center;
    }

    .vcr-mobile-nav-link:hover {
        color: var(--vcr-gold);
    }

    .vcr-mobile-cta {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 992px) {
    .vcr-nav-cta {
        display: inline-flex;
    }

    .vcr-burger {
        display: none;
    }

    .vcr-mobile-menu {
        display: none;
    }
}

/* Hero Section */
.vcr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.vcr-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.vcr-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .vcr-hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.vcr-hero-title {
    font-family: 'Italiana', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.vcr-hero-line {
    display: block;
    color: var(--vcr-text);
}

.vcr-hero-line-accent {
    color: var(--vcr-gold);
}

.vcr-hero-subtitle {
    font-size: 18px;
    color: var(--vcr-muted);
    max-width: 540px;
    line-height: 1.7;
}

.vcr-hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .vcr-hero-right {
        align-items: stretch;
    }
    .vcr-hero-title {
        font-size: 40px;
    }
}

/* About Section */
.vcr-about {
    padding: 120px 0;
    position: relative;
}

.vcr-about-header {
    text-align: center;
    margin-bottom: 64px;
}

.vcr-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.vcr-about-text {
    font-size: 18px;
    color: var(--vcr-muted);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 64px;
}

.vcr-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 640px) {
    .vcr-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vcr-stat-card {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.6) 0%, rgba(34, 16, 40, 0.6) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.vcr-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vcr-shadow-soft);
    border-color: rgba(247, 201, 122, 0.2);
}

.vcr-stat-value {
    font-family: 'Italiana', serif;
    font-size: 48px;
    color: var(--vcr-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.vcr-stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--vcr-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Games Section */
.vcr-games {
    padding: 120px 0;
}

.vcr-games-header {
    text-align: center;
    margin-bottom: 64px;
}

.vcr-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.vcr-game-card {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.4) 0%, rgba(34, 16, 40, 0.4) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vcr-game-card:hover {
    box-shadow: var(--vcr-shadow-glow);
    border-color: rgba(247, 201, 122, 0.2);
}

@media (min-width: 768px) {
    .vcr-game-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.vcr-game-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vcr-room-panel) 0%, var(--vcr-burgundy-stage) 100%);
}

.vcr-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vcr-game-card:hover .vcr-game-img {
    transform: scale(1.05);
}

.vcr-game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 10, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vcr-game-card:hover .vcr-game-overlay {
    opacity: 1;
}

.vcr-play-btn {
    animation: vcrPulse 2s ease-in-out infinite;
}

.vcr-game-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vcr-game-title {
    font-family: 'Italiana', serif;
    font-size: 32px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-game-desc {
    color: var(--vcr-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Features Section */
.vcr-features {
    padding: 120px 0;
}

.vcr-features-header {
    text-align: center;
    margin-bottom: 64px;
}

.vcr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.vcr-feature-card {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.4) 0%, rgba(34, 16, 40, 0.4) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.vcr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vcr-shadow-soft);
    border-color: rgba(247, 201, 122, 0.2);
}

.vcr-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-feature-title {
    font-family: 'Italiana', serif;
    font-size: 24px;
    color: var(--vcr-gold);
    margin-bottom: 12px;
}

.vcr-feature-desc {
    color: var(--vcr-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Section */
.vcr-cta {
    padding: 120px 0;
    text-align: center;
}

.vcr-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.vcr-cta-title {
    font-family: 'Italiana', serif;
    font-size: 40px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-cta-desc {
    font-size: 18px;
    color: var(--vcr-muted);
    margin-bottom: 32px;
}

/* Join Section */
.vcr-join {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(247, 201, 122, 0.05) 0%, transparent 100%);
}

.vcr-join-content {
    max-width: 700px;
    margin: 0 auto;
}

.vcr-join-title {
    font-family: 'Italiana', serif;
    font-size: 40px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-join-desc {
    font-size: 18px;
    color: var(--vcr-muted);
    margin-bottom: 32px;
}

/* Footer */
.vcr-footer {
    background: linear-gradient(180deg, var(--vcr-room-panel) 0%, var(--vcr-burgundy-stage) 100%);
    border-top: 1px solid var(--vcr-border);
    padding: 64px 0 32px;
}

.vcr-disclaimer-box {
    display: flex;
    gap: 20px;
    background: rgba(247, 201, 122, 0.05);
    border: 1px solid rgba(247, 201, 122, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 48px;
}

.vcr-disclaimer-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vcr-gold) 0%, var(--vcr-copper) 100%);
    color: var(--vcr-satin);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 24px;
    font-weight: 700;
}

.vcr-disclaimer-text {
    font-size: 13px;
    color: var(--vcr-muted);
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .vcr-footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vcr-footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vcr-footer-title {
    font-family: 'Italiana', serif;
    font-size: 18px;
    color: var(--vcr-gold);
    margin-bottom: 8px;
}

.vcr-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vcr-footer-link {
    color: var(--vcr-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vcr-footer-link:hover {
    color: var(--vcr-gold);
}

.vcr-footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vcr-contact-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--vcr-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.vcr-contact-value {
    color: var(--vcr-muted);
    font-size: 14px;
}

.vcr-footer-desc {
    font-size: 14px;
    color: var(--vcr-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.vcr-footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--vcr-border);
}

.vcr-copyright {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--vcr-muted);
}

/* Animations */
@keyframes vcrFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes vcrPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Smooth Scroll Offset */
html {
    scroll-padding-top: 100px;
}

/* Focus Styles for Accessibility */
:focus-visible {
    outline: 2px solid var(--vcr-lilac);
    outline-offset: 2px;
}
