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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1a1a2e;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #16213e;
    padding: 10px 0;
    border-bottom: 2px solid #0f3460;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e94560;
}

.logo img {
    max-height: 50px;
    border-radius: 8px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0f3460, #16213e);
}

.hero h1 {
    font-size: 3.5rem;
    color: #e94560;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #aaa;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary {
    background: #e94560;
    color: #fff;
}

.btn-primary:hover {
    background: #c73a52;
}

.btn-secondary {
    background: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #e94560;
}

.btn-secondary:hover {
    background: #2a2a4e;
}

.hero-screenshot {
    max-width: 80%;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Features */
.features {
    padding: 50px 0;
    background: #1a1a2e;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e94560;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature {
    background: #16213e;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e94560;
}

.feature h3 {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.feature p {
    color: #bbb;
}

/* News */
.news {
    padding: 40px 0;
    background: #0f3460;
}

.news h2 {
    color: #e94560;
}

.news ul {
    list-style: none;
    margin-top: 15px;
}

.news li {
    margin-bottom: 10px;
}

.news a {
    color: #e0e0e0;
    text-decoration: none;
}

.news a:hover {
    text-decoration: underline;
}

.news .date {
    color: #aaa;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Footer */
footer {
    background: #16213e;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #0f3460;
    color: #888;
}

footer a {
    color: #e94560;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* General */
h1, h2, h3 {
    color: #e94560;
    margin-top: 30px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

section {
    margin-bottom: 40px;
}

p, li, dd {
    color: #ddd;
}

code {
    background: #2a2a4e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.95em;
    color: #e0e0e0;
}

pre {
    background: #0f0f1f;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    border: 1px solid #2a2a4e;
}

pre code {
    background: none;
    padding: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #2a2a4e;
    padding: 10px;
    text-align: left;
}

th {
    background: #0f3460;
    color: #e0e0e0;
}

td {
    color: #ccc;
}

dl {
    margin: 20px 0;
}

dt {
    font-weight: bold;
    color: #e94560;
    margin-top: 15px;
}

dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

a {
    color: #e94560;
}

a:hover {
    color: #ff6b81;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}