


:root {
    --bg: #1a1a1a;
    --text: #e0e0e0;
    --accent: #00cc88;
    --card-bg: #2d2d2d;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 50px 20px 20px;
    max-width: 900px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #111;
    padding: 10px 0;
    z-index: 99;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: var(--accent);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
.navbar a:hover {
    text-decoration: underline;
}

.download-box,
.features {
	background: var(--card-bg);
    padding: 25px;
	border-radius: 8px;
	max-width: 720px;
	margin: 40px auto;
}

.features h3 {
	margin-top: 0;
	color: var(--accent);
}

.features li {
	margin: 10px 0;
	list-style-type: none;
	position: relative;
	padding-left: 30px;
}

.features li::before {
	content: "✅";
	position: absolute;
	left: 0;
}


.download-btn {
    display: inline-block;
    background: var(--accent);
    padding: 12px 24px;
    margin: 10px;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
}
.download-btn.alt {
    background: #444;
    color: #fff;
}
.download-btn:hover {
    transform: translateY(-2px);
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff5050;
    padding: 4px 6px;
    color: #fff;
    font-size: 0.7em;
    border-radius: 20px;
}

footer {
    text-align: center;
    color: #777;
    margin: 60px 0 20px;
}
		
		
        
		
		
