/* style.css - Dark mode landing page */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0e0e0e;
    color: #e0e0e0;
}

.header {
    background: #131313;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4da4ff;
}

.nav a {
    margin-left: 18px;
    color: #cdd6e6;
    text-decoration: none;
    font-size: 15px;
}
.nav a:hover {
    color: #ffffff;
}

.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(29,39,60,0.6), rgba(6,10,20,0.6));
    border-bottom: 1px solid #222;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #4da4ff;
}

.section {
    padding: 50px 0;
}

.section.alt {
    background: #0f1316;
}

.container {
    width: 92%;
    max-width: 980px;
    margin: auto;
}

.image {
    width: 100%;
    margin: 22px 0;
    border-radius: 8px;
    background: #222;
    min-height: 160px;
}

.btn-primary {
    background: #ff7e00;
    padding: 14px 26px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
}
.btn-primary:hover {
    background: #e86f00;
}

.cta-center {
    text-align: center;
    margin-top: 22px;
}

.footer {
    background: #0b0b0c;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #222;
}

.footer h3 {
    margin-top: 10px;
    color: #6bb8ff;
}

.footer p {
    color: #98a6b6;
    line-height: 1.6;
}

copyright {
    color: #7a8896;
    font-size: 13px;
}
