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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    height: 100vh;
    background: linear-gradient(-45deg, blue, indigo, violet);
    background-size: 400% 400%;
    animation: gradient 120s ease infinite;
    display: flex;
    flex-direction: column;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
}

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

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffdd57;
}

.navbar_bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.nav-unten {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-unten a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-unten a:hover {
    color: #ffdd57;
}

.bottom {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.bouncy-text {
    display: inline-block;
    cursor: pointer;
}

.bouncy-text:hover {
    animation: bounce 1s ease;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(20px); }
    50% { transform: translateY(-12px); }
    70% { transform: translateY(12px); }
    100% { transform: translateY(0); }
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.bouncy-text {
    display: inline-block;
    cursor: pointer;
}

.bouncy-text:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0% { transform: translateX(0); }
    30% { transform: translateX(-12px); }
    50% { transform: translateX(5px); }
    70% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; align-items: flex-start; padding: 1rem; }
    .nav-links { flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; max-width: 90%; }
}

@media (max-width: 480px) {
    .logo { font-size: 1rem; }
    .nav-links { gap: 0.8rem; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
}
