@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #B0B0B0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    min-height: 100vh;
}

header {
    background: rgba(0, 0, 0, 0.9);
    color: #C0C0C0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    border-bottom: 2px solid #654321;
}

header h1 {
    margin: 0;
    font-weight: 900;
    text-shadow: 0 0 10px #C0C0C0;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    text-shadow: 0 0 5px #8B4513;
}

nav a:hover {
    color: #A9A9A9;
    text-shadow: 0 0 10px #A9A9A9;
}

#hero {
    background: linear-gradient(135deg, #2a2a2a, #000000);
    color: #C0C0C0;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
    border-top: 2px solid #654321;
    border-bottom: 2px solid #654321;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 15px #C0C0C0;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #B0B0B0;
}

.cta-button {
    background: linear-gradient(45deg, #654321, #8B4513);
    color: #C0C0C0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: 2px solid #A9A9A9;
    text-shadow: 0 0 5px #C0C0C0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 67, 33, 0.6);
    background: linear-gradient(45deg, #8B4513, #654321);
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    color: #C0C0C0;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 0 0 10px #C0C0C0;
}

#about, #features, #links, #press-kit {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    margin-bottom: 2rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    border: 1px solid #654321;
}

#features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

#features li {
    background: rgba(101, 67, 33, 0.1);
    padding: 1rem;
    border-radius: 0;
    border-left: 4px solid #8B4513;
    border: 1px solid #A9A9A9;
}

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

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    transition: transform 0.3s;
    border: 2px solid #654321;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(101, 67, 33, 0.5);
}

#links {
    text-align: center;
}

#links a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(101, 67, 33, 0.2);
    color: #8B4513;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s;
    border: 1px solid #A9A9A9;
    text-shadow: 0 0 5px #8B4513;
}

#links a:hover {
    background: rgba(101, 67, 33, 0.4);
    color: #A9A9A9;
    text-shadow: 0 0 10px #A9A9A9;
}

#press-kit a {
    background: linear-gradient(45deg, #654321, #8B4513);
    color: #C0C0C0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: transform 0.3s;
    display: inline-block;
    border: 2px solid #A9A9A9;
    text-shadow: 0 0 5px #C0C0C0;
}

#press-kit a:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #8B4513, #654321);
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: #888;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.8);
    border-top: 2px solid #654321;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
}