:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --accent: #ff0055;
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.noob-btn {
    background: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

h1 {
    font-family: var(--font-header);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-right: 1.5rem;
}

.btn.primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn.primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.8);
}

.btn.secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn.secondary:hover {
    background: rgba(0, 242, 255, 0.1);
}

.placeholder-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: sweep 4s infinite linear;
}

@keyframes sweep {
    0% { transform: translateY(-100%) rotate(45deg); }
    100% { transform: translateY(100%) rotate(45deg); }
}

/* Achievements */
.achievements {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a20 100%);
}

.section-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span {
    color: var(--accent);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Setup */
.setup-specs {
    padding: 100px 0;
}

.specs-list {
    list-style: none;
    margin-top: 2rem;
}

.specs-list li {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.specs-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.placeholder-graphic {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: var(--accent);
}

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none;
    }
}
