:root {
    --primary: #00ff00; /* Neon Lime */
    --secondary: #ff00ff; /* Electric Pink */
    --accent: #ffff00; /* Bright Yellow */
    --bg: #000000;
    --card-bg: #111111;
    --text: #ffffff;
    --text-muted: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text {
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.pink-text {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

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

header {
    padding: 20px 0;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 5px solid var(--secondary);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

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

.card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid #333;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--secondary);
}

/* Form */
.form-container {
    background: var(--card-bg);
    padding: 40px;
    border: 2px solid var(--primary);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary);
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--secondary);
    color: white;
    box-shadow: 0 0 15px var(--secondary);
}

.btn-full {
    width: 100%;
}

/* Footer */
footer {
    background: #050505;
    padding: 50px 0;
    border-top: 2px solid var(--secondary);
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Success Message */
#form-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    text-align: center;
}

/* Privacy & Cookies */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid #333;
}

.policy-content h2 {
    color: var(--primary);
    margin: 30px 0 15px;
}

.policy-content p, .policy-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}
