/* --- Global Reset --- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,sans-serif;
}

/* --- Body & Hintergrund --- */
body{
    height:100vh;
    display:flex;
    flex-direction:column;
    background:linear-gradient(135deg,#0c1024,#141b45,#0a0f2b);
    background-size:200% 200%;
    animation:bgmove 14s infinite alternate;
    color:white;
    overflow:hidden; /* KEIN Scrollen */
}

@keyframes bgmove{
    0%{background-position:left}
    100%{background-position:right}
}

/* --- Navbar --- */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(10px);
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    opacity:0.8;
    transition:0.3s;
}

nav a:hover{
    opacity:1;
}

/* --- Main Content --- */
main{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* --- Hero Section --- */
.hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:52px;
    animation:fadeIn 1.8s ease forwards;
}

.hero span{
    color:#4ea3ff;
}

.subtitle{
    font-size:18px;
    opacity:0.85;
    margin-top:10px;
    animation:fadeIn 2s ease forwards;
}

/* --- Moving Text --- */
.moving-text{
    margin:20px 0;
    white-space:nowrap;
    animation:scroll 18s linear infinite;
    opacity:0.8;
}

@keyframes scroll{
    0%{transform:translateX(100%)}
    100%{transform:translateX(-100%)}
}

/* --- Buttons --- */
.buttons{
    display:flex;
    gap:15px;
    margin-top:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn{
    padding:12px 26px;
    background:#347dff;
    border-radius:10px;
    text-decoration:none;
    color:white;
    transition:0.3s;
    box-shadow:0 8px 15px rgba(0,0,0,0.2);
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 20px rgba(0,0,0,0.3);
}

.btn.ghost{
    background:transparent;
    border:1px solid rgba(255,255,255,0.3);
}

/* --- Cards --- */
.cards{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.cards .card{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius:16px;
    padding:18px;
    width:200px;
    text-align:center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cards .card h3{
    margin-bottom:10px;
    font-size:20px;
    color:#4ea3ff;
}

.cards .card p{
    font-size:16px;
    opacity:0.85;
}

.cards .card:hover{
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 20px 30px rgba(0,0,0,0.3);
}

/* --- Footer --- */
footer{
    text-align:center;
    padding:12px;
    font-size:14px;
    background:rgba(255,255,255,0.03);
}

/* --- Animations --- */
@keyframes fadeIn{
    0%{opacity:0; transform:translateY(20px);}
    100%{opacity:1; transform:translateY(0);}
}