:root {
    --cyan: #00f0ff;
    --pink: #ff00aa;
    --yellow: #ffe600;
    --black: #0a0a0a;
}

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

body {
    background: #050505;
    color: #ddd;
    font-family: 'Arial', sans-serif;
    padding: 15px;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.crt-container {
    max-width: 980px;
    margin: 0 auto;
    filter: contrast(1.1);
}

.main-box {
    background: #111;
    border: 12px solid var(--pink);
    box-shadow: 
        0 0 30px var(--cyan),
        0 0 60px rgba(255,0,170,0.4),
        inset 0 0 80px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* HEADER */
header {
    background: #000;
    text-align: center;
    padding: 40px 20px 25px;
    border-bottom: 8px solid var(--yellow);
}

.logo {
    height: 220px;
    margin-bottom: 15px;
}

h1 {
    font-size: 5rem;
    color: var(--cyan);
    text-shadow: 
        0 0 20px var(--cyan),
        6px 6px 0 #000,
        -3px -3px 0 #000;
    letter-spacing: 4px;
}

.tagline {
    color: var(--yellow);
    font-size: 1.45rem;
    font-weight: bold;
    text-shadow: 0 0 15px var(--yellow);
}

/* NAV */
nav {
    background: #1a1a1a;
    padding: 18px;
    text-align: center;
    border-bottom: 6px solid var(--pink);
}

nav a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
}

nav a:hover {
    color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow);
}

/* SECTIONS */
.section {
    padding: 55px 35px;
    border-bottom: 6px solid #222;
    text-align: center;
}

.section h2 {
    font-size: 2.9rem;
    color: var(--pink);
    margin-bottom: 30px;
    text-shadow: 4px 4px 0 #000;
}

/* HERO */
.hero {
    background: linear-gradient(#000, #1a001a);
    padding: 90px 30px;
}

.hero-content h2 {
    font-size: 3.8rem;
    color: var(--yellow);
    margin-bottom: 30px;
}

/* Content boxes */
.content-box {
    border: 6px solid var(--cyan);
    padding: 25px;
    background: #0a0a0a;
    max-width: 720px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--pink);
    color: white;
    padding: 18px 45px;
    font-size: 1.4rem;
    font-weight: bold;
    border: 5px solid var(--yellow);
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 0 25px var(--pink);
    transition: all 0.3s;
}

.btn:hover {
    background: var(--yellow);
    color: #000;
    transform: scale(1.1);
}

/* Galleri */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border: 5px solid var(--pink);
    box-shadow: 0 0 20px rgba(255,0,170,0.6);
}

/* Footer */
footer {
    background: #000;
    padding: 25px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

/* Mobil */
@media (max-width: 768px) {
    h1 { font-size: 3.4rem; }
    .hero-content h2 { font-size: 2.8rem; }
    nav a { margin: 0 10px; font-size: 1.1rem; }
    .section { padding: 45px 20px; }
}