
:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --text-main: #e0e0e0;
    --accent: #00ffcc;
    --accent-hover: #00ccaa;
    --danger: #ff3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
}

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

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

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 20, 10, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1506146332389-18140dc7b2fb?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 40px 20px;
    border-bottom: 1px solid #333;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.classified {
    color: var(--danger);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 15px auto 20px;
}

.rap-promo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 20px auto 30px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.3));
}

.cta-btn {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent);
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
    text-transform: uppercase;
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
}

.intel-box {
    background: rgba(0, 255, 204, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 20px;
}

.intel-box p {
    margin-bottom: 15px;
}

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

.suit-card {
    background-color: var(--bg-panel);
    padding: 20px;
    border: 1px solid #333;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.suit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.suit-card::before {
    content: '[CONFIDENTIAL]';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: var(--danger);
}

.suit-img {
    height: 180px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.9));
}

.suit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

/* VIDEO SECTION */
.video-container {
    text-align: center;
    margin-top: 30px;
}

.promo-video {
    width: 100%;
    max-width: 800px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    background-color: #000;
}

/* GAME SECTION */
.game-section {
    text-align: center;
}

#game-container {
    position: relative;
    width: 800px;
    height: 400px;
    margin: 30px auto;
    background-color: #111;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#game-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* MASCOT IMAGE */
.full-image-container {
    margin-top: 30px;
    text-align: center;
}

.bandit-img {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0,255,204,0.15));
}

footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--accent);
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}
