* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #111;
    border-bottom: 1px solid #222;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

nav a {
    color: #888;
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
}

nav a:hover { color: #fff; }

/* HERO */
.hero {
    background: linear-gradient(to bottom, #1a1a2e, #0f0f0f);
    padding: 80px 40px;
    text-align: center;
}
 

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.1rem;
    color: #888;
    max-width: 520px;
    margin: 0 auto 32px;
}

.btn-download {
    display: inline-block;
    background: #4f6ef7;
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-download:hover { background: #3a58e0; }

.hero-meta {
    margin-top: 20px;
    font-size: 0.83rem;
    color: #555;
}

/* SCREENSHOTS */
.screenshots {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.screenshots h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.screenshot-grid .main-shot {
    grid-column: span 2;
}

.shot {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.8rem;
    overflow: hidden;
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* INFO SECTION */
.info {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.info h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.info p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.features {
    list-style: none;
    margin-top: 8px;
}

.features li {
    color: #888;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    gap: 10px;
}

.features li::before {
    content: '✓';
    color: #4f6ef7;
    font-weight: 700;
    flex-shrink: 0;
}

/* SIDEBAR */
.sidebar-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 24px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1e1e1e;
    font-size: 0.85rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-label { color: #555; }
.spec-value { color: #ccc; font-weight: 500; }

.rating {
    text-align: center;
    padding: 20px 0 12px;
}

.rating-num {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin: 6px 0 4px;
}

.rating-count { font-size: 0.8rem; color: #555; }

.btn-download-sm {
    display: block;
    background: #4f6ef7;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-download-sm:hover { background: #3a58e0; }

/* FOOTER */
footer {
    border-top: 1px solid #1a1a1a;
    padding: 24px 40px;
    text-align: center;
    color: #444;
    font-size: 0.82rem;
} 