/* Base Reset */
/* Logo Sizing and Alignment */
/* Logo Sizing and Alignment */
.logo {
    display: flex;
    align-items: center;
    margin-left: 25px; /* Adjust this number to push it further right */
}

.nav-img {
    width: 40px;  
    height: 40px;
    object-fit: contain; 
    border-radius: 8px; 
    transition: transform 0.3s ease; /* Adds a smooth animation */
}

/* Optional: Makes the logo bump slightly when hovered */
.nav-img:hover {
    transform: scale(1.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1115;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Colors */
:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --dark-bg: #0f1115;
    --card-bg: #1a1d24;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, #1a1d24 0%, #0f1115 100%);
}

.hero-content {
    max-width: 800px;
    margin-top: 60px; /* Offset for navbar */
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f1115;
    background: var(--neon-cyan);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
    background: #fff;
}

/* Features Section */
.features-section {
    padding: 8rem 5%;
    background-color: var(--dark-bg);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    color: #94a3b8;
}

/* Download Section */
.download-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #11141a 100%);
    text-align: center;
}

.download-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(26, 29, 36, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.download-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-box p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.download-button {
    display: inline-block;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, var(--neon-purple), #8b00ff);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.checksum {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b !important;
}

code {
    background: #0f1115;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--neon-cyan);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: #0a0b0e;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .nav-links {
        display: none; /* Add a hamburger menu for production */
    }
}
