﻿/* AsdeSim Website - Matches Simulator Theme */

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

body {
    font-family: 'AsdeView', 'Courier New', monospace;
    background: rgb(10, 15, 25);
    color: rgb(220, 230, 240);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: rgb(10, 15, 25);
}

header h1 {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: rgb(220, 230, 240);
    letter-spacing: 0.02em;
}

header p {
    font-size: 1.25rem;
    color: rgb(120, 130, 140);
    font-weight: normal;
    letter-spacing: 0.01em;
}

/* Hero Section */
.hero {
    background: rgb(10, 15, 25);
    padding: 3rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 1.5rem;
    color: rgb(220, 230, 240);
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.01em;
}

.hero p {
    font-size: 1rem;
    color: rgb(120, 130, 140);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Container */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgb(220, 230, 240);
    font-weight: normal;
    letter-spacing: 0.01em;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    color: rgb(220, 230, 240);
}

/* Overview Section */
.overview p {
    font-size: 1rem;
    color: rgb(120, 130, 140);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: rgb(40, 45, 55);
    padding: 1.5rem;
    border-radius: 5px;
    border: 2px solid rgb(80, 90, 100);
    transition: border-color 0.2s ease;
}

.feature:hover {
    border-color: rgb(0, 224, 21);
}

.feature h3 {
    color: rgb(220, 230, 240);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature p {
    color: rgb(120, 130, 140);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.screenshot-placeholder {
    background: rgb(40, 45, 55);
    border: 2px dashed rgb(80, 90, 100);
    border-radius: 5px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(120, 130, 140);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.screenshot-placeholder:hover {
    border-color: rgb(0, 224, 21);
}

/* Commands Section */
.command-list {
    background: rgb(40, 45, 55);
    padding: 2rem;
    border-radius: 5px;
    border: 2px solid rgb(80, 90, 100);
}

.command {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(80, 90, 100);
}

.command:last-child {
    border-bottom: none;
}

.command code {
    background: rgb(10, 15, 25);
    color: rgb(0, 224, 21);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    min-width: 120px;
    border: 1px solid rgb(80, 90, 100);
}

.command span {
    color: rgb(120, 130, 140);
    font-size: 0.95rem;
}

/* Roadmap Section */
.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    background: rgb(40, 45, 55);
    padding: 1.5rem;
    border-radius: 5px;
    border: 2px solid rgb(80, 90, 100);
    transition: border-color 0.2s ease;
}

.roadmap-item:hover {
    border-color: rgb(0, 224, 21);
}

.roadmap-item .status {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.roadmap-item.done .status {
    background: rgb(0, 224, 21);
    color: rgb(10, 15, 25);
}

.roadmap-item.progress .status {
    background: rgb(255, 165, 0);
    color: rgb(10, 15, 25);
}

.roadmap-item.upcoming .status {
    background: rgb(80, 90, 100);
    color: rgb(120, 130, 140);
}

.roadmap-item h3 {
    color: rgb(220, 230, 240);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.roadmap-item p {
    color: rgb(120, 130, 140);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download Section */
.download {
    text-align: center;
    background: rgb(40, 45, 55);
    padding: 3rem 2rem;
    border-radius: 5px;
    border: 2px solid rgb(0, 224, 21);
}

.download h2 {
    margin-bottom: 1rem;
}

.download p {
    font-size: 1rem;
    color: rgb(120, 130, 140);
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid;
    min-width: 220px;
    justify-content: center;
}

.btn-primary {
    background: rgb(40, 45, 55);
    color: rgb(220, 230, 240);
    border-color: rgb(80, 90, 100);
}

.btn-primary:hover {
    background: rgb(60, 70, 85);
    border-color: rgb(120, 130, 140);
}

.btn-secondary {
    background: rgb(40, 45, 55);
    color: rgb(220, 230, 240);
    border-color: rgb(80, 90, 100);
}

.btn-secondary:hover {
    background: rgb(60, 70, 85);
    border-color: rgb(120, 130, 140);
}

.btn.steam {
    background: rgb(40, 45, 55);
    color: rgb(220, 230, 240);
    border-color: rgb(80, 90, 100);
}

.btn.steam:hover {
    background: rgb(60, 70, 85);
    border-color: rgb(120, 130, 140);
}

.btn.github {
    background: rgb(40, 45, 55);
    color: rgb(220, 230, 240);
    border-color: rgb(80, 90, 100);
}

.btn.github:hover {
    background: rgb(60, 70, 85);
    border-color: rgb(120, 130, 140);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: rgb(120, 130, 140);
    border-top: 1px solid rgb(80, 90, 100);
    background: rgb(10, 15, 25);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .command {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .command code {
        min-width: auto;
    }
}
