/* Graphite Theme - Unique & Creative Redesign */
:root {
    /* Graphite Palette */
    --g-void: #121212;
    --g-charcoal: #1e1e1e;
    --g-slate: #2d2d2d;
    --g-steel: #4a4a4a;
    --g-silver: #a0a0a0;
    --g-platinum: #e0e0e0;
    --g-paper: #ffffff;
    
    /* Accents */
    --g-accent: #00ff9d; /* Neon Graphite Mint for crazy contrast */
    --g-accent-dim: #008f58;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing & Layout */
    --nav-width: 280px;
    --container-max: 1400px;
    --grid-gap: 2rem;
    
    /* Effects */
    --shadow-deep: 10px 10px 20px #0b0b0b, -10px -10px 20px #252525; /* Neumorphic Dark */
    --border-rough: 3px solid var(--g-steel);
    --transition-slow: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    background-color: var(--g-void);
    color: var(--g-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--g-paper);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-slow);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Core */
.graph-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.graph-sidebar {
    width: var(--nav-width);
    background-color: var(--g-charcoal);
    height: 100vh;
    position: fixed;
    border-right: 1px solid var(--g-steel);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.graph-brand {
    margin-bottom: 4rem;
    text-align: center;
    border-bottom: 2px solid var(--g-accent);
    padding-bottom: 1rem;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--g-paper);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: right;
}

.graph-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.graph-link {
    font-size: 1.1rem;
    color: var(--g-silver);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.graph-link::before {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--g-accent);
    transition: var(--transition-slow);
}

.graph-link:hover {
    color: var(--g-paper);
    padding-left: 10px;
}

.graph-link:hover::before {
    left: 0;
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--g-steel);
    text-align: center;
}

/* Main Content Area */
.graph-main {
    flex: 1;
    margin-left: var(--nav-width);
    background: var(--g-void);
    position: relative;
}

/* Hero Section */
.graph-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, var(--g-slate), var(--g-void));
    border-bottom: 5px solid var(--g-accent);
    overflow: hidden;
}

.hero-geometry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-1 { width: 500px; height: 500px; top: -100px; right: -100px; border-radius: 50%; }
.geo-2 { width: 300px; height: 300px; bottom: 10%; left: 10%; transform: rotate(45deg); border: 1px solid var(--g-accent-dim); }

.hero-content {
    text-align: right;
    z-index: 2;
    padding: 4rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--g-accent);
    color: var(--g-void);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    transform: skew(-10deg);
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-bottom: 3rem;
    border-left: 3px solid var(--g-steel);
    padding-left: 2rem;
}

.btn-graphite {
    background: transparent;
    border: 2px solid var(--g-paper);
    color: var(--g-paper);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-slow);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-graphite:hover {
    background: var(--g-paper);
    color: var(--g-void);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Games Grid */
.graph-section {
    padding: 8rem 4rem;
    border-bottom: 1px solid var(--g-charcoal);
}

.section-head {
    margin-bottom: 6rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.section-head h2 {
    font-size: 4rem;
    color: var(--g-slate);
    -webkit-text-stroke: 1px var(--g-silver);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.game-card-g {
    background: var(--g-charcoal);
    padding: 1rem;
    border: 1px solid var(--g-steel);
    transition: var(--transition-slow);
    position: relative;
}

.game-card-g:hover {
    transform: translateY(-10px);
    border-color: var(--g-accent);
}

.g-card-img {
    height: 300px;
    background: #000;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.g-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.game-card-g:hover .g-card-img img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.g-card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.g-card-meta {
    font-size: 0.9rem;
    color: var(--g-steel);
}

/* Features - Asymmetric */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.feature-box {
    border-left: 2px solid var(--g-accent);
    padding-left: 2rem;
}

.f-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--g-slate);
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
}

.f-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--g-paper);
}

/* About Section */
.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.about-img img{
    width: 60%;
}
.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--g-accent);
    z-index: -1;
}

/* Contact */
.contact-form-g {
    background: var(--g-charcoal);
    padding: 3rem;
    border: 1px solid var(--g-steel);
}

.g-input, .g-textarea {
    width: 100%;
    background: var(--g-void);
    border: none;
    border-bottom: 2px solid var(--g-steel);
    padding: 1rem;
    color: var(--g-paper);
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.g-input:focus, .g-textarea:focus {
    outline: none;
    border-color: var(--g-accent);
}

/* Footer */
.graph-footer {
    background: var(--g-charcoal);
    padding: 6rem 4rem 2rem;
    margin-left: var(--nav-width); /* Match main content */
    border-top: 5px solid var(--g-accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: var(--g-steel);
}

/* Badges */
.g-badges {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    opacity: 0.6;
    filter: grayscale(100%);
    justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    background: var(--g-accent);
    border: none;
    width: 50px;
    height: 50px;
    color: var(--g-void);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: var(--g-charcoal);
    padding: 4rem;
    border: 2px solid var(--g-accent);
    text-align: center;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    .graph-sidebar {
        transform: translateX(-100%);
    }
    
    .graph-sidebar.active {
        transform: translateX(0);
    }
    
    .graph-main, .graph-footer {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 2rem;
        text-align: center;
    }
    
    .hero-desc {
        border-left: none;
        padding-left: 0;
    }

    .features-container, .about-grid, .footer-top {
        grid-template-columns: 1fr;
    }
}
/* Compliance Specific Styles */
.compliance-bar {
    background: #000;
    color: var(--g-silver);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--g-steel);
    letter-spacing: 1px;
}

.compliance-bar span {
    color: var(--g-accent);
    font-weight: 700;
    margin: 0 10px;
}

.gaming-notice-box {
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid var(--g-accent-dim);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.gaming-notice-box h4 {
    color: var(--g-accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
}

.gaming-notice-box p {
    font-size: 0.85rem;
    color: var(--g-silver);
    margin: 0;
}

/* Responsive Extra */
@media (max-width: 768px) {
    .compliance-bar {
        font-size: 0.65rem;
    }
}
