:root {
    --color-primary: #00B2FF;
    --color-primary-dark: #0095e8;
    --color-secondary: #6C63FF;
    --color-accent: #00FFCC;
    --color-violet: #8B5CF6;
    --color-purple: #A855F7;
    --color-indigo: #6366F1;

    --color-dark: #0A1525;
    --color-darker: #050D1A;
    --color-darkest: #030912;

    --color-light: #f5f9fc;
    --color-gray: #8C9CAD;
    --color-gray-light: #E1E9F2;

    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-violet) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    --gradient-violet: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-violet) 100%);
    --gradient-rainbow: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 25%, var(--color-violet) 50%, var(--color-purple) 75%, var(--color-indigo) 100%);
    --gradient-background: linear-gradient(135deg, var(--color-darker) 0%, #0D4377 50%, #1e1b4b 100%);
    --gradient-text: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
    --gradient-highlight: linear-gradient(135deg, #00B2FF 0%, #8B5CF6 50%, #A855F7 100%);

    --glass-bg: rgba(10, 21, 37, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;

    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --glow-gradient: 0 0 30px rgba(139, 92, 246, 0.3);

    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --container-max-width: 1200px;
    --container-padding: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: var(--color-darkest);
    color: var(--color-light);
    font-family: var(--font-primary);
    font-weight: 400;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: var(--container-padding);
    background: rgba(3, 9, 18, 0.85);
    backdrop-filter: blur(1px);
}

.logo {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.logo-image {
    max-width: 200px;
    height: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(0, 178, 255, 0.4));
    transform: scale(2.8);
}

.logo-image:hover {
    transform: scale(2.9); /* <-- ANGEPASST: Der Hover-Effekt ist jetzt an die neue Größe angepasst */
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6));
}

.main-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    color: var(--color-light);
}

.beta-highlight {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text {
    width: 60%;
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gray);
    line-height: 1.7;
    font-weight: 300;
}

.text-highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-text);
    opacity: 0.5;
}

.release-info {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.release-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-violet);
    opacity: 0.1;
    z-index: -1;
    transition: var(--transition-normal);
}

.release-info:hover {
    transform: translateY(-2px);
    border-color: var(--color-violet);
    box-shadow: var(--glow-gradient);
}

.release-date {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-light);
    text-align: center;
    z-index: 10000;
}

.date-highlight {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.countdown {
    margin-top: var(--spacing-lg);
    min-width: 40%;
    max-width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(15px);
    box-shadow: var(--box-shadow-md);
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
    z-index: -1;
}

.time {
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-violet);
    opacity: 0;
    transition: var(--transition-normal);
}

.time:hover {
    transform: translateY(-2px);
    border-color: var(--color-violet);
    box-shadow: var(--glow-gradient);
}

.time:hover::before {
    opacity: 0.1;
}

.time .number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.time .label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.beta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    width: 100%;
    max-width: 800px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--glow-gradient);
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item span {
    position: relative;
    z-index: 2;
    color: var(--color-light);
}

.feature-item strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-icon {
    font-size: var(--font-size-xl);
    position: relative;
    z-index: 2;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--glass-bg);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    color: var(--color-light);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5865F2 0%, var(--color-violet) 100%);
    opacity: 0.15;
    z-index: -1;
    transition: var(--transition-normal);
}

.discord-btn:hover {
    transform: translateY(-2px);
    border-color: #5865F2;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
    color: #ffffff;
}

.discord-btn:hover::before {
    opacity: 0.3;
}

.discord-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float var(--duration, 10s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    filter: blur(1px);
    z-index: 1;
}

.floating-element.large {
    width: 35px;
    height: 35px;
    opacity: 0.3;
    filter: blur(2px);
}

.floating-element.large:nth-child(1) {
    top: 8%;
    left: 8%;
    background: var(--gradient-primary);
}
.floating-element.large:nth-child(2) {
    top: 12%;
    right: 8%;
    background: var(--gradient-violet);
}
.floating-element.large:nth-child(3) {
    bottom: 10%;
    left: 10%;
    background: var(--gradient-highlight);
}

.floating-element.medium {
    width: 24px;
    height: 24px;
    opacity: 0.4;
    filter: blur(1px);
}

.floating-element.medium:nth-child(4) {
    top: 20%;
    left: 6%;
    background: var(--gradient-accent);
}
.floating-element.medium:nth-child(5) {
    top: 30%;
    right: 7%;
    background: var(--gradient-rainbow);
}
.floating-element.medium:nth-child(6) {
    top: 50%;
    left: 5%;
    background: var(--gradient-primary);
}
.floating-element.medium:nth-child(7) {
    top: 70%;
    right: 6%;
    background: var(--gradient-violet);
}
.floating-element.medium:nth-child(8) {
    bottom: 20%;
    right: 9%;
    background: var(--gradient-highlight);
}

.floating-element.small {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    filter: blur(0.5px);
}

.floating-element.small:nth-child(9) {
    top: 15%;
    left: 12%;
    background: var(--gradient-accent);
}
.floating-element.small:nth-child(10) {
    top: 25%;
    right: 12%;
    background: var(--gradient-primary);
}
.floating-element.small:nth-child(11) {
    top: 45%;
    left: 10%;
    background: var(--gradient-violet);
}
.floating-element.small:nth-child(12) {
    top: 65%;
    right: 11%;
    background: var(--gradient-rainbow);
}
.floating-element.small:nth-child(13) {
    bottom: 15%;
    left: 14%;
    background: var(--gradient-highlight);
}
.floating-element.small:nth-child(14) {
    bottom: 25%;
    right: 13%;
    background: var(--gradient-accent);
}

.floating-element.tiny {
    width: 10px;
    height: 10px;
    opacity: 0.6;
    filter: blur(0px);
}

.floating-element.tiny:nth-child(15) {
    top: 12%;
    left: 4%;
    background: var(--gradient-primary);
}
.floating-element.tiny:nth-child(16) {
    top: 22%;
    right: 4%;
    background: var(--gradient-accent);
}
.floating-element.tiny:nth-child(17) {
    top: 38%;
    left: 3%;
    background: var(--gradient-violet);
}
.floating-element.tiny:nth-child(18) {
    top: 58%;
    right: 3.5%;
    background: var(--gradient-highlight);
}
.floating-element.tiny:nth-child(19) {
    top: 78%;
    left: 4%;
    background: var(--gradient-rainbow);
}
.floating-element.tiny:nth-child(20) {
    bottom: 12%;
    right: 4%;
    background: var(--gradient-primary);
}
.floating-element.tiny:nth-child(21) {
    bottom: 30%;
    left: 3.5%;
    background: var(--gradient-accent);
}
.floating-element.tiny:nth-child(22) {
    bottom: 40%;
    right: 3.5%;
    background: var(--gradient-violet);
}

.floating-element.small:nth-child(9),
.floating-element.small:nth-child(10),
.floating-element.small:nth-child(13),
.floating-element.small:nth-child(14) {
    opacity: 0.45;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) translateX(-20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg) scale(1.05);
    }
}

.floating-element:nth-child(even) {
    animation-name: floatReverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-12px) translateX(6px) rotate(30deg) scale(1.03);
    }
    50% {
        transform: translateY(-4px) translateX(-8px) rotate(60deg) scale(0.97);
    }
    75% {
        transform: translateY(8px) translateX(4px) rotate(90deg) scale(1.01);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(10px) translateX(-6px) rotate(-20deg) scale(0.95);
    }
    66% {
        transform: translateY(-6px) translateX(12px) rotate(20deg) scale(1.05);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) translateX(8px) rotate(45deg) scale(1.08);
        opacity: 0.4;
    }
}
#particles-js {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 2;
pointer-events: none;
}

.launch-message {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: var(--spacing-lg);
}


@media (max-width: 768px) {
    :root {
        --font-size-3xl: 2rem;
        --font-size-2xl: 1.75rem;
        --font-size-xl: 1.25rem;
        --container-padding: 1rem;
    }

    .text {
        width: 90%;
        font-size: var(--font-size-base);
    }

    .countdown {
        flex-wrap: wrap;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .time {
        width: 100px;
        margin: var(--spacing-xs);
    }

    .time .number {
        font-size: var(--font-size-2xl);
    }

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

@media (max-width: 480px) {
    .time {
        width: 80px;
    }

    .time .number {
        font-size: var(--font-size-xl);
    }

    .main-title {
        font-size: var(--font-size-2xl);
    }
}

.imprint-link {
  display: inline-block;
  margin-top: var(--spacing-xl);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition-normal);
  position: relative;
  z-index: 10;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-pill);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
}
.imprint-link:hover {
  color: var(--color-primary);
  border-color: rgba(0, 178, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 178, 255, 0.15);
}
