body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #e5e5e5;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 30px 20px;
    background: #1a1a1a;
    border-bottom: 2px solid #333;
}

header h1 {
    margin: 0;
    font-size: 2.4em;
}

.subtitle {
    margin-top: 5px;
    font-size: 1.2em;
    color: #bbb;
}

nav {
    margin-top: 15px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #73cfff;
    font-weight: bold;
}

nav a.active {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.cta {
    display: inline-block;
    padding: 12px 25px;
    background: #73cfff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
}

.features, section {
    padding: 40px 20px;
}

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

.feature-box {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
}

footer {
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #333;
    margin-top: 40px;
}
.screenshot {
    text-align: center;
    margin: 40px 0;
}

.screenshot img {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    border: 1px solid #444;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}


/* Notices / disclaimers */
.notice{
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 14px 16px;
    border: 1px solid #2f5b6a;
    border-radius: 10px;
    background: rgba(115,207,255,0.08);
    color: #e5e5e5;
    text-align: left;
    line-height: 1.45;
}
.muted{ color:#bbb; }
.small{ font-size: 0.95em; }

/* Footer layout */
.site-footer{
    background: #1a1a1a;
    padding: 22px 20px;
    border-top: 2px solid #333;
    margin-top: 40px;
    text-align: left;
}
.footer-grid{
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
}
.footer-links{
    margin-top: 14px;
    text-align: center;
}
.footer-links a{
    color:#73cfff;
    text-decoration:none;
    font-weight:bold;
}
.footer-small{
    margin-top: 14px;
    text-align:center;
    color:#bbb;
    font-size:0.92em;
}
