/* Reset margins and set smooth scrolling */
html {
    scroll-behavior: smooth;
}
body {
    background-color: #0f0c1b; /* Super deep dark purple/black background */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* NAVIGATION BAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(15, 12, 27, 0.95);
    border-bottom: 2px solid #a855f7; /* Purple glow line */
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #a855f7;
}
.navbar nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}
.navbar nav a:hover {
    color: #a855f7;
}
.navbar .nav-btn {
    background-color: #a855f7;
    padding: 8px 15px;
    border-radius: 5px;
}
.navbar .nav-btn:hover {
    background-color: #8b5cf6;
    color: white;
    box-shadow: 0 0 15px #a855f7;
}

/* HERO SECTION (Main Area) */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #2e1065 0%, #0f0c1b 100%); /* Cool purple aura effect */
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}
.purple-text {
    color: #c084fc;
    text-shadow: 0 0 20px #a855f7;
}
.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* BIG DOWNLOAD BUTTON */
.download-btn {
    background-color: #a855f7;
    color: white;
    font-size: 20px;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.download-btn:hover {
    background-color: #c084fc;
    transform: translateY(-3px); /* Makes it pop up slightly when hovering */
    box-shadow: 0 0 30px #a855f7;
}/* SCREENSHOTS ALIGNMENT FIX */
.screenshots {
    padding: 60px 20px;
    background-color: #0b0813;
    text-align: center;
}
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto 0 auto;
}
.screenshot-card {
    background-color: #161224;
    border: 2px dashed #4c1d95;
    border-radius: 12px;
    width: 320px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
.screenshot-card:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}
.image-placeholder {
    color: #a7f3d0;
    font-weight: bold;
    font-size: 16px;
}/* FEATURES ALIGNMENT FIX */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto 0 auto;
}
.feature-card {
    background-color: #161224;
    border: 1px solid #3b176d;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    transition: 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}
.feature-card h3 {
    font-size: 22px;
    margin-top: 0;
    color: #c084fc;
}
.feature-card p {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 15px;
}