/* ===========================================
   FUTURISTIC NEON THEME 2025
   Ultra clean, techy, modern, animated
=========================================== */

/* ---- Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
    pointer-events: auto;
}

html, body {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background: #0c0f17;
    color: #dfe6ff;
}

/* ---- Smooth transitions ---- */
a, button, input {
    transition: 0.25s ease;
}

/* ===========================================
   HEADER
=========================================== */
header {
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    pointer-events: auto !important;
}

header::before,
header::after {
    pointer-events: none !important;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #5ad2ff, #9d4bff);
    -webkit-background-clip: text;
    color: transparent;
}

.nav a {
    text-decoration: none;
    margin-left: 35px;
    font-size: 17px;
    color: #aebcff;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0%;
    background: #5ad2ff;
    transition: 0.3s ease;
}

.nav a:hover {
    color: #fff;
}

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

/* ===========================================
   HERO SECTION
=========================================== */
.hero {
    text-align: center;
    padding: 100px 40px 100px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(90,210,255,0.4), transparent 60%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none !important;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ===========================================
   CTA Button
=========================================== */
.cta {
    margin-top: 40px;
    padding: 14px 34px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(90deg, #5ad2ff, #8b4cff);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(90,210,255,0.5);
}

.cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(90,210,255,0.8);
}

/* ===========================================
   FEATURE CARDS
=========================================== */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 60px 40px;
    position: relative;
    z-index: 10;
}

.card {
    width: 320px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
}

/* Glow border */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #5ad2ff, #8b4cff, #5ad2ff);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderMove 4s linear infinite;
    pointer-events: none !important;
}

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

.card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e2e8ff;
}

.card p {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Buttons in Cards */
.card a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(90deg, #5ad2ff, #8b4cff);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.card a:hover {
    transform: scale(1.05);
    transition: 0.2s ease;
}

/* ===========================================
   Inputs
=========================================== */
.input-neon {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    outline: none;
    font-size: 16px;
}

.input-neon:focus {
    border-color: #7b4cff;
    box-shadow: 0 0 15px rgba(123,76,255,0.4);
}

/* ===========================================
   FOOTER
=========================================== */
footer {
    margin-top: 40px;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===========================================
   HIDDEN ADMIN DOT
=========================================== */
.admin-dot {
    position: fixed;
    bottom: 18px;
    right: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #5ad2ff, #8b4cff);
    box-shadow: 0 0 12px rgba(90,210,255,0.6);
    cursor: pointer;
    opacity: 0.35;
    transition: 0.25s ease;
    z-index: 9999;
}

.admin-dot:hover {
    opacity: 1;
    transform: scale(1.25);
    box-shadow: 0 0 18px rgba(90,210,255,0.9);
}

/* ===========================================
   FIX: Layers & Clicks
=========================================== */
.cards, .card, .card a {
    position: relative;
    z-index: 50;
    pointer-events: auto !important;
}

#downloadKey,
.input-neon {
    position: relative;
    z-index: 20;
}

[data-include] {
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
}

/* ===========================================
   Neon Scrollbar
=========================================== */

html {
    scrollbar-width: thin;
    scrollbar-color: #7b4cff #0c0f17;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5ad2ff, #8b4cff);
    border-radius: 10px;
    border: 2px solid #0c0f17;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8b4cff, #5ad2ff);
}

/* ===========================================
   FULLPAGE FIX – Kein unnötiges Scrollen
=========================================== */

body::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
}
/* Kleine Hero Section */
.small-hero {
    padding: 80px 20px 40px;
    text-align: center;
}

/* Tool Section */
.tool-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Tool Card */
.tool-card {
    background: var(--bg2, #1b1b1b);
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: var(--bg3, #2b2b2b);
    color: white;
}

.btn.full {
    width: 100%;
}

/* Status Text */
.status {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}
