/* ====== VARIABLES ====== */
:root {
    --bg-dark: #0a0a0a;
    --bg-cell: #111111;
    --orange-prison: #ff6b1a;
    --orange-glow: #ff8c42;
    --rust: #8b4513;
    --concrete: #2a2a2a;
    --steel: #3d3d3d;
    --text-primary: #e0e0e0;
    --text-dim: #888888;
    --warning-yellow: #ffd700;
    --blood-red: #8b0000;
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* ====== OVERLAYS ====== */
.bars-overlay {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: 1000;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(30, 30, 30, 0.4) 60px,
        rgba(30, 30, 30, 0.4) 65px
    );
    opacity: 0.3;
}

.flicker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    animation: flicker 4s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.35; }
    52% { opacity: 0.2; }
    54% { opacity: 0.35; }
}

/* ====== HEADER & NAV ====== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.8) 100%);
    border-bottom: 2px solid var(--steel);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--orange-prison);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--orange-prison);
    border-bottom-color: var(--orange-prison);
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(20,20,20,0.95) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.02) 2px,
            rgba(255,255,255,0.02) 4px
        );
}

.mugshot-frame {
    width: 280px;
    height: 340px;
    background: var(--concrete);
    border: 4px solid var(--steel);
    position: relative;
    margin-bottom: 2rem;
    box-shadow: 
        inset 0 0 50px rgba(0,0,0,0.5),
        0 10px 40px rgba(0,0,0,0.8);
}

.mugshot-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255,107,26,0.03) 1px,
            rgba(255,107,26,0.03) 2px
        );
}

.mugshot-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--orange-prison);
    text-shadow: 0 0 30px rgba(255, 107, 26, 0.6);
    letter-spacing: 8px;
}

.inmate-number {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-top: 1rem;
    letter-spacing: 4px;
}

.height-lines {
    position: absolute;
    right: 10px;
    top: 20px;
    bottom: 20px;
    width: 30px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        var(--text-dim) 18px,
        var(--text-dim) 20px
    );
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 12px;
    color: var(--orange-prison);
    text-shadow: 
        0 0 40px rgba(255, 107, 26, 0.4),
        0 4px 0 var(--rust);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-dim);
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange-prison);
    color: var(--bg-dark);
    box-shadow: 
        0 4px 0 var(--rust),
        0 8px 20px rgba(255, 107, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 var(--rust),
        0 12px 30px rgba(255, 107, 26, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--steel);
}

.btn-secondary:hover {
    border-color: var(--orange-prison);
    color: var(--orange-prison);
}

/* ====== CONTRACT BANNER ====== */
.contract-banner {
    background: var(--concrete);
    border-top: 3px solid var(--orange-prison);
    border-bottom: 3px solid var(--orange-prison);
    padding: 1.5rem;
}

.banner-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-label {
    color: var(--orange-prison);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.contract-address {
    background: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid var(--steel);
    word-break: break-all;
}

.copy-btn {
    background: var(--steel);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--orange-prison);
    color: var(--bg-dark);
}

/* ====== SECTIONS COMMON ====== */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 8px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header .subtitle {
    color: var(--text-dim);
    letter-spacing: 4px;
    font-size: 0.9rem;
}

/* ====== ABOUT SECTION ====== */
.about {
    background: 
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-cell) 50%, var(--bg-dark) 100%);
}

.case-stamp {
    position: absolute;
    top: -10px;
    right: 20%;
    background: var(--blood-red);
    color: white;
    padding: 0.5rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    transform: rotate(12deg);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
}

.case-file {
    background: var(--concrete);
    border: 2px solid var(--steel);
    padding: 3rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        inset 0 0 30px rgba(0,0,0,0.3),
        0 10px 40px rgba(0,0,0,0.5);
}

.case-file::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--orange-prison),
        var(--orange-prison) 20px,
        transparent 20px,
        transparent 40px
    );
}

.file-content {
    position: relative;
}

.redacted-header {
    display: block;
    font-size: 1.2rem;
    color: var(--orange-prison);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    border-bottom: 1px solid var(--steel);
    padding-bottom: 1rem;
}

.file-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.file-text.highlight {
    color: var(--orange-prison);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
}

.evidence-stamp {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 107, 26, 0.2);
    letter-spacing: 4px;
    transform: rotate(-5deg);
}

/* ====== TOKENOMICS SECTION ====== */
.tokenomics {
    background: var(--bg-dark);
}

.cell-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cell {
    background: var(--bg-cell);
    border: 2px solid var(--steel);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cell:hover {
    border-color: var(--orange-prison);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.2);
}

.cell-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.cell-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--orange-prison);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.cell-label {
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 3px;
}

/* ====== HOW TO BUY SECTION ====== */
.how-to-buy {
    background: 
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-cell) 50%, var(--bg-dark) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--concrete);
    border: 2px solid var(--steel);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--orange-prison);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--orange-prison);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ====== COMMUNITY SECTION ====== */
.community {
    background: var(--bg-dark);
    padding-bottom: 4rem;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.community-card {
    background: var(--bg-cell);
    border: 2px solid var(--steel);
    padding: 3rem 4rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.community-card:hover {
    border-color: var(--orange-prison);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 26, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--orange-prison);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ====== FOOTER ====== */
footer {
    background: var(--bg-cell);
    border-top: 2px solid var(--steel);
    padding: 2rem;
    text-align: center;
}

.warning-tape {
    background: repeating-linear-gradient(
        45deg,
        var(--warning-yellow),
        var(--warning-yellow) 20px,
        var(--bg-dark) 20px,
        var(--bg-dark) 40px
    );
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.warning-tape span {
    display: block;
    background: var(--bg-dark);
    color: var(--warning-yellow);
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.footer-text {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
    
    .mugshot-frame {
        width: 220px;
        height: 280px;
    }
    
    .mugshot-text {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contract-address {
        font-size: 0.7rem;
    }
    
    .case-file {
        padding: 2rem 1.5rem;
    }
    
    .community-card {
        padding: 2rem 3rem;
    }
}

