:root {
    --bg-color: #111;
    --text-color: #eee;
    --accent-color: #ff5500; /* Prison Orange */
    --accent-hover: #cc4400;
    --steel-color: #556677;
    --font-heading: 'Black Ops One', cursive;
    --font-body: 'Roboto Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: crosshair; /* Adds a bit of game feel */
}

/* --- Intro Animation: Bars --- */
.bars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    pointer-events: none; /* Let clicks pass through after animation */
}

.bar {
    flex: 1;
    background: linear-gradient(90deg, #222, #444, #222);
    border-right: 2px solid #000;
    height: 100%;
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
    box-shadow: 5px 0 10px rgba(0,0,0,0.5);
}

.bars-container.open .bar {
    transform: translateY(-100%);
}

/* Stagger the bars slightly for a cooler effect */
.bar:nth-child(1) { transition-delay: 0.0s; }
.bar:nth-child(2) { transition-delay: 0.1s; }
.bar:nth-child(3) { transition-delay: 0.05s; }
.bar:nth-child(4) { transition-delay: 0.15s; }
.bar:nth-child(5) { transition-delay: 0.02s; }
.bar:nth-child(6) { transition-delay: 0.12s; }
.bar:nth-child(7) { transition-delay: 0.08s; }
.bar:nth-child(8) { transition-delay: 0.18s; }


/* --- Background Effects --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), transparent 10%, rgba(0,0,0,0.85) 40%);
    transition: background 0.1s ease; /* Smooth movement */
}


/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

.btn-nav {
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--accent-color);
    color: #000;
}


/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--text-color);
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}
.glitch::before {
    left: 2px;
    text-shadow: -1px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(14px, 9999px, 122px, 0); }
    20% { clip: rect(89px, 9999px, 34px, 0); }
    40% { clip: rect(22px, 9999px, 16px, 0); }
    60% { clip: rect(67px, 9999px, 134px, 0); }
    80% { clip: rect(10px, 9999px, 88px, 0); }
    100% { clip: rect(56px, 9999px, 49px, 0); }
}
@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 110px, 0); }
    20% { clip: rect(12px, 9999px, 5px, 0); }
    40% { clip: rect(88px, 9999px, 34px, 0); }
    60% { clip: rect(5px, 9999px, 66px, 0); }
    80% { clip: rect(110px, 9999px, 12px, 0); }
    100% { clip: rect(34px, 9999px, 88px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
}

.release-date {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--steel-color);
}


/* --- Content Sections --- */
.section-dark {
    background-color: #0d0d0d;
    padding: 100px 0;
    border-top: 1px solid #333;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
}

.visual-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--steel-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 1px solid #444;
}


/* --- Orange Section --- */
.section-orange {
    background-color: var(--accent-color);
    color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 10px, transparent 10px, transparent 20px);
}

.section-orange h2 {
    color: #111;
    border-color: #111;
}

.section-orange p {
    color: #333;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border: 2px solid #111;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}


/* --- Footer --- */
footer {
    background-color: #050505;
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid #222;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: #666;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s;
}

.socials a:hover {
    color: var(--accent-color);
}

/* --- Responsive --- */
.plate-circle {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ddd 60%, #bbb 65%, #fff 70%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.knife-icon {
    width: 20px;
    height: 200px;
    background: linear-gradient(to right, #ccc, #eee, #ccc);
    position: relative;
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

.knife-icon::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 20px;
    height: 80px;
    background: #333; /* Handle */
    border-radius: 0 0 5px 5px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .content-split { flex-direction: column; }
    header { padding: 20px; }
    nav { display: none; /* Simplify for now or add hamburger */ }
}