/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
    line-height: 1.6;
}

/* Variables for easy color changes */
:root {
    --neon-green: #66fcf1; /* Cyberpunk Cyan/Green */
    --dark-bg: #0b0c10;
    --darker-bg: #1f2833;
    --font-header: 'Orbitron', sans-serif;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-header);
    color: #fff;
    text-transform: uppercase;
}

a { text-decoration: none; color: white; transition: 0.3s; }

/* Navbar */
.navbar {
    background: rgba(11, 12, 16, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-green);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-header);
    font-size: 1.2rem;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

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

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

.btn-highlight {
    border: 1px solid var(--neon-green);
    padding: 5px 15px;
    border-radius: 5px;
}

.btn-highlight:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.hero-btns {
    margin-top: 20px;
}

.btn-main, .btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    margin: 10px;
    font-family: var(--font-header);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-main {
    background: var(--neon-green);
    color: var(--dark-bg);
}

.btn-main:hover {
    box-shadow: 0 0 15px var(--neon-green);
}

.btn-secondary {
    border: 2px solid #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Sections */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.bg-darker { background-color: var(--darker-bg); }

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.player-card {
    background: #1f2833;
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    transition: 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.card-image {
    width: 100px;
    height: 100px;
    background: #45a29e;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* Contact */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 300px;
    flex: 1;
}

input, textarea {
    padding: 15px;
    background: #1f2833;
    border: 1px solid #45a29e;
    color: white;
    font-family: 'Roboto', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--neon-green);
}

.social-links a {
    font-size: 2rem;
    margin-right: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .contact-wrapper { flex-direction: column; }
}