/* ============================================================
   NeoLauncher - Premium Dark Gaming Theme
   A unique Minecraft Launcher website design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. RESET + BASE
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0e27;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a2332, #1a0a2e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #243044, #2a1040);
}


/* ============================================================
   2. NAVBAR
   ============================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), rgba(124, 58, 237, 0.3), transparent) 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    z-index: 1001;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-logo span {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #00d4ff;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav-brand (alias for nav-logo in HTML) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    z-index: 1001;
}

.nav-brand .nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-brand-text {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav toggle / hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav link shop button */
.nav-link-shop {
    color: #00d4ff !important;
    font-weight: 600 !important;
}


/* ============================================================
   3. HERO
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0a2e 30%, #0d1b3e 60%, #0a1628 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 102, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #0a0e1a, transparent);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    filter: brightness(1.5);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-logo {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    margin: 0 auto 32px auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.4)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.2));
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, #fff 0%, #00d4ff 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    font-size: 14px;
    color: #00d4ff;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}


/* ============================================================
   4. FEATURES
   ============================================================ */

.features {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0e27 0%, rgba(0, 20, 60, 0.3) 50%, #0a0e27 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4ff;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0), transparent);
    transition: background 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    border-left: 3px solid #00d4ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15), 0 0 20px rgba(124, 58, 237, 0.1);
    background: linear-gradient(135deg, #111827 0%, rgba(13, 27, 62, 0.5) 100%);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.3), transparent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(124, 58, 237, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #00d4ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}


/* ============================================================
   5. VERSIONS
   ============================================================ */

.versions {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e27 0%, rgba(30, 0, 60, 0.2) 50%, #0a0e27 100%);
}

.versions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.02) 49px,
            rgba(255, 255, 255, 0.02) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.02) 49px,
            rgba(255, 255, 255, 0.02) 50px
        );
    z-index: 0;
}

.versions > * {
    position: relative;
    z-index: 1;
}

.version-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    cursor: default;
    transition: all 0.3s ease;
}

.version-badge:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2), 0 0 12px rgba(124, 58, 237, 0.15);
}

.version-badge:nth-child(odd):hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25), 0 0 12px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    color: #a78bfa;
}

.version-badge:nth-child(3n):hover {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2), 0 0 12px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.version-badge.active {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.3);
}

.version-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.version-badge .badge-dot.latest {
    background: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Version badge latest variant */
.version-badge-latest {
    background: rgba(0, 212, 255, 0.15) !important;
    color: #00d4ff !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

/* Versions scroll track */
.versions-scroll {
    overflow-x: auto;
    padding: 16px 0;
}

.versions-track {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Preview Section */
.preview {
    padding: 100px 24px;
    position: relative;
}

/* Preview / Screenshot Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.15);
}

.preview-placeholder {
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: #475569;
}

.preview-icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.preview-placeholder-text {
    font-size: 14px;
    color: #475569;
}

.preview-label {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}


/* ============================================================
   6. SCREENSHOTS
   ============================================================ */

.screenshots {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0e27 0%, rgba(0, 15, 50, 0.25) 50%, #0a0e27 100%);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.screenshot-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.1), 0 0 40px rgba(124, 58, 237, 0.08);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card .screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.screenshot-overlay p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111827, #1a2332);
    color: #64748b;
    font-size: 14px;
}


/* ============================================================
   7. DOWNLOAD CTA
   ============================================================ */

.download-cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0b1020 0%, #1a0a2e 40%, #0d1b3e 70%, #0d1525 100%);
    z-index: 0;
}

.download-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.download-cta > * {
    position: relative;
    z-index: 1;
}

.download-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.download-cta p {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.download-cta .btn-primary {
    font-size: 18px;
    padding: 18px 48px;
}

.download-cta .download-info {
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

.download-cta .download-info span {
    margin: 0 12px;
}


/* ============================================================
   8. FOOTER
   ============================================================ */

.footer {
    background: #060912;
    padding: 60px 24px 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7c3aed, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0066ff);
    border-radius: 1px;
}

.footer-column p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: #00d4ff;
    padding-left: 4px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #00d4ff;
}

.footer-social-link svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.footer-disclaimer {
    font-size: 12px;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 8px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}


/* ============================================================
   9. SUBPAGES
   ============================================================ */

.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.page-header .breadcrumb a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: #00d4ff;
}

.page-header .breadcrumb .separator {
    color: #475569;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 32px;
}

.content-section p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.content-section ul li {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d4ff;
}

.card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 212, 255, 0.08);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}


/* FAQ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 16px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question:hover h3 {
    color: #00d4ff;
}

.faq-question .faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #00d4ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
}


/* ============================================================
   10. BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff, #00d4ff, #7c3aed);
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    animation: btnShimmer 1.5s ease infinite;
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.5), 0 0 20px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
    background-position: 100% 50%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #111827;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #1a2332;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #94a3b8;
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
}

.btn .btn-badge {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   11. FORM ELEMENTS
   ============================================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 8px;
}

.form-group .required {
    color: #ef4444;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #475569;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select option {
    background: #111827;
    color: #ffffff;
}

.form-hint {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

.form-error {
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
}

input.error,
textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

input.success,
textarea.success {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-group,
.radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input,
.radio-group input {
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
}


/* ============================================================
   12. UTILITIES
   ============================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gradient {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: #ffffff;
}

.text-secondary {
    color: #94a3b8;
}

.text-muted {
    color: #64748b;
}

.text-accent {
    color: #00d4ff;
}

.text-success {
    color: #22c55e;
}

.text-warning {
    color: #f59e0b;
}

.text-danger {
    color: #ef4444;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glow {
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
}

.glow-strong {
    box-shadow: 0 0 48px rgba(0, 212, 255, 0.3);
}

.surface {
    background: #111827;
}

.surface-hover {
    background: #1a2332;
}

.rounded {
    border-radius: 12px;
}

.rounded-lg {
    border-radius: 20px;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.shadow-lg {
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.3);
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 32px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-col {
    flex-direction: column;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden {
    display: none;
}

.visible {
    display: block;
}


/* ============================================================
   13. ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* AOS (Animate on Scroll) styles */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translate(0);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }

.animate-fadeUp {
    animation: fadeUp 0.6s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}


/* ============================================================
   14. EXTRA COMPONENTS
   ============================================================ */

/* Status badge */
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.status-online {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-online::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.status-offline {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-maintenance {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Tag / Chip */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    font-size: 13px;
    color: #00d4ff;
    font-weight: 500;
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    background: #1a2332;
    color: #ffffff;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Alert / Notice */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.alert-info {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: #00d4ff;
}

.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

td {
    padding: 14px 20px;
    font-size: 14px;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Modal / Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}


/* ============================================================
   15. SUBPAGE STYLES (Download, Support, Ideen, Shop)
   ============================================================ */

/* Download Page */
.os-detection { text-align: center; margin-bottom: 32px; }
.os-detect-card {
    display: inline-flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 16px 32px;
}
.os-icon { color: #00d4ff; }
.os-icon svg { width: 48px; height: 48px; }
.os-detect-text { color: #94a3b8; font-size: 15px; }

.download-card {
    text-align: center; max-width: 500px; margin: 0 auto;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 48px 40px;
}
.download-card-icon { color: #00d4ff; margin-bottom: 24px; }
.download-card-icon svg { width: 64px; height: 64px; }
.download-card-title { font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.download-card-version { color: #64748b; font-size: 14px; margin-bottom: 24px; }
.download-note { color: #64748b; font-size: 13px; margin-top: 16px; }

.system-requirements { margin-top: 48px; }
.system-requirements h3 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }

.requirements-table {
    width: 100%; max-width: 600px; margin: 0 auto;
    border-collapse: separate; border-spacing: 0;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden;
}
.requirements-table th { background: rgba(0,212,255,0.1); color: #00d4ff; font-weight: 600; padding: 12px 20px; text-align: left; }
.requirements-table td { color: #cbd5e1; padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.05); }

.install-steps { max-width: 600px; margin: 48px auto 0; }
.install-steps h3 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.install-step {
    display: flex; align-items: flex-start; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.install-step-number {
    min-width: 32px; height: 32px; background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 14px;
}
.install-step-text { color: #cbd5e1; font-size: 15px; line-height: 1.6; }

/* Support Page */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    width: 100%; padding: 18px 24px; background: none; border: none; color: white;
    font-size: 16px; font-weight: 600; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s;
}
.faq-question:hover { color: #00d4ff; }
.faq-chevron { transition: transform 0.3s; color: #64748b; }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: #00d4ff; }
.faq-answer { padding: 0 24px 18px; color: #94a3b8; line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

.contact-section { text-align: center; margin-top: 48px; }
.contact-card {
    display: inline-block; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 48px;
}
.contact-icon { color: #5865F2; margin-bottom: 16px; }
.contact-icon svg { width: 48px; height: 48px; }

/* Ideen Page */
.idea-form {
    max-width: 600px; margin: 0 auto;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #cbd5e1; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    color: white; font-size: 15px; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #00d4ff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { display: flex; align-items: flex-start; gap: 8px; color: #64748b; font-size: 13px; margin-top: 16px; }
.form-note svg { flex-shrink: 0; }

.popular-ideas { margin-top: 48px; }
.popular-ideas h3 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.ideas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.idea-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 24px;
}
.idea-card-title { color: white; font-weight: 600; margin-bottom: 8px; }
.idea-card-desc { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.idea-card-votes { display: flex; align-items: center; gap: 6px; margin-top: 12px; color: #00d4ff; font-weight: 600; }

/* Shop Page */
.coming-soon {
    text-align: center; max-width: 600px; margin: 0 auto 48px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 48px;
}
.coming-soon-icon { color: #f59e0b; margin-bottom: 16px; }
.coming-soon-icon svg { width: 64px; height: 64px; }
.coming-soon h2 { color: white; font-size: 28px; margin-bottom: 12px; }
.coming-soon p { color: #94a3b8; }
.countdown { display: flex; justify-content: center; gap: 24px; margin-top: 24px; }
.countdown-item { text-align: center; }
.countdown-number { font-size: 32px; font-weight: 700; color: #00d4ff; }
.countdown-label { color: #64748b; font-size: 12px; text-transform: uppercase; }

.shop-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px; text-align: center; opacity: 0.5;
}
.shop-card-icon { color: #00d4ff; margin-bottom: 16px; }
.shop-card-icon svg { width: 48px; height: 48px; }
.shop-card h3 { color: white; margin-bottom: 8px; }
.shop-card p { color: #94a3b8; font-size: 14px; }
.shop-card .price { color: #00d4ff; font-size: 20px; font-weight: 700; margin-top: 12px; }

.newsletter-section {
    text-align: center; max-width: 500px; margin: 48px auto 0;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px;
}
.newsletter-icon { color: #00d4ff; margin-bottom: 16px; }
.newsletter-icon svg { width: 48px; height: 48px; }
.newsletter-form { display: flex; gap: 12px; margin-top: 16px; }
.newsletter-form input { flex: 1; }

/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* Tablets and small desktops */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-grid,
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 34px;
    }

    .download-cta h2 {
        font-size: 38px;
    }

    .hero-stats {
        gap: 32px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamburger,
    .nav-toggle {
        display: flex;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 600;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .hero {
        min-height: auto;
        padding: 120px 24px 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .download-cta {
        padding: 80px 24px;
    }

    .download-cta h2 {
        font-size: 32px;
    }

    .download-cta p {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .features {
        padding: 80px 0;
    }

    .versions {
        padding: 60px 0;
    }

    .screenshots {
        padding: 60px 0;
    }

    .version-badges {
        gap: 8px;
    }

    .version-badge {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 15px;
    }

    .download-cta h2 {
        font-size: 26px;
    }

    .download-cta p {
        font-size: 15px;
    }

    .download-cta .btn-primary {
        font-size: 16px;
        padding: 16px 36px;
    }

    .page-header {
        min-height: auto;
        padding: 100px 20px 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 15px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .modal {
        padding: 24px;
        border-radius: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .stat-value {
        font-size: 26px;
    }

    .container {
        padding: 0 16px;
    }

    .footer {
        padding: 40px 16px 24px;
    }

    .nav-container {
        padding: 0 16px;
    }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-content {
        animation: none;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================================================
   NEW: Extra particles, orbs, stats, accents, CTA decos
   ============================================================ */

.particle-13 { top: 8%; left: 55%; width: 3px; height: 3px; }
.particle-14 { top: 35%; left: 90%; width: 4px; height: 4px; }
.particle-15 { top: 70%; left: 8%; width: 2px; height: 2px; }
.particle-16 { top: 15%; left: 72%; width: 5px; height: 5px; }
.particle-17 { top: 55%; left: 38%; width: 3px; height: 3px; }
.particle-18 { top: 85%; left: 65%; width: 2px; height: 2px; }
.particle-19 { top: 25%; left: 18%; width: 4px; height: 4px; }
.particle-20 { top: 60%; left: 82%; width: 3px; height: 3px; }

.particle-13, .particle-14, .particle-15, .particle-16,
.particle-17, .particle-18, .particle-19, .particle-20 {
    position: absolute;
    background: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-14, .particle-16, .particle-18, .particle-20 {
    animation-delay: -3s;
    background: rgba(0, 102, 255, 0.5);
}

.particle-15, .particle-19 {
    animation-delay: -5s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 0.8; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.hero-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25), transparent 70%);
    top: 10%;
    left: -5%;
    animation: orbFloat1 10s ease-in-out infinite;
}

.hero-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
    top: 50%;
    right: -3%;
    animation: orbFloat2 12s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
    bottom: 15%;
    left: 30%;
    animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 30px) scale(1.1); }
    66% { transform: translate(-20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, 25px) scale(1.08); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(25px, -20px) scale(1.15); opacity: 0.7; }
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-accent {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-deco-1 {
    width: 12px;
    height: 12px;
    background: rgba(0, 212, 255, 0.4);
    top: 20%;
    left: 12%;
    animation: ctaDecoFloat 6s ease-in-out infinite;
}

.cta-deco-2 {
    width: 8px;
    height: 8px;
    background: rgba(0, 102, 255, 0.5);
    top: 35%;
    right: 15%;
    animation: ctaDecoFloat 8s ease-in-out infinite reverse;
}

.cta-deco-3 {
    width: 16px;
    height: 16px;
    background: rgba(99, 102, 241, 0.3);
    bottom: 25%;
    left: 20%;
    animation: ctaDecoFloat 7s ease-in-out infinite 1s;
    border-radius: 4px;
    transform: rotate(45deg);
}

@keyframes ctaDecoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-orb-1 { width: 200px; height: 200px; }
    .hero-orb-2 { width: 160px; height: 160px; }
    .hero-orb-3 { width: 120px; height: 120px; }
}

/* ============================================================
   17. SUBPAGE ENHANCEMENTS - Vibrant & Animated
   ============================================================ */

/* Page headers get gradient background like hero */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0a2e 40%, #0d1b3e 70%, #0a1628 100%);
}

/* Subpage content sections alternate backgrounds */
.content-section:nth-child(even) {
    background: rgba(124, 58, 237, 0.03);
}
.content-section:nth-child(odd) {
    background: rgba(0, 60, 120, 0.03);
}

/* FAQ gradient accent line */
.faq-gradient-accent {
    width: 100%;
    max-width: 800px;
    height: 3px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7c3aed, transparent);
    border-radius: 2px;
}

/* FAQ items glow on hover */
.faq-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Download button pulse */
.download-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Download animated arrow */
.download-arrow-animated {
    margin: 16px auto;
    animation: bounceArrow 2s ease-in-out infinite;
    text-align: center;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* Shimmer text for Coming Soon */
.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, #00d4ff 50%, #7c3aed 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Vibrant countdown gradient numbers */
.countdown-vibrant .countdown-number {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
    font-weight: 800;
}

/* Shop card glow effect */
.shop-card-glow {
    opacity: 0.7;
    transition: opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.shop-card-glow:hover {
    opacity: 0.85;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
}

/* Idea card vote animation */
.idea-card-votes {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.idea-card-votes:hover svg {
    transform: scale(1.3);
    transition: transform 0.2s;
    color: #00d4ff;
}
.idea-card-votes:hover .idea-vote-count {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Form card gradient border on focus-within */
.idea-form-glow {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.idea-form-glow:focus-within {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

/* Feature detail accent icon background */
.feature-detail .preview-placeholder {
    position: relative;
}
.feature-detail .preview-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
    z-index: 0;
}
.feature-alt .preview-placeholder::before {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
}

/* ── Nav Auth Buttons ── */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.nav-auth .btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-auth .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}
.nav-auth .btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}
.nav-auth .btn-primary {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}
.nav-auth .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
}
.nav-auth button.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 100, 100, 0.4);
    color: #ff6b6b;
    font-family: inherit;
}
.nav-auth button.btn-outline:hover {
    background: rgba(255, 100, 100, 0.1);
    border-color: #ff6b6b;
}
@media (max-width: 768px) {
    .nav-auth {
        margin-left: 0;
        margin-top: 12px;
        justify-content: center;
    }
}
