/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --text-primary: #ffffff;
    --accent-color: #0088cc;
    --accent-secondary: #6b46c1;
    --glow-color: #4c1d95;
    --gradient-primary: linear-gradient(135deg, #0088cc 0%, #6b46c1 100%);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animierte Hintergrund-Elemente */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: auto;
    opacity: 0.15;
    filter: blur(1px);
    transition: transform 0.1s ease-out, opacity 0.2s ease;
    will-change: transform, opacity;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #0088cc 0%, transparent 70%);
    animation: float1 25s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #6b46c1 0%, transparent 70%);
    animation: float2 20s ease-in-out infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #0088cc 0%, transparent 70%);
    animation: float3 30s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #6b46c1 0%, transparent 70%);
    animation: float4 28s ease-in-out infinite;
}

.shape-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.5) 0%, transparent 70%);
    animation: float5 35s ease-in-out infinite;
}

.shape-6 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.5) 0%, transparent 70%);
    animation: float6 22s ease-in-out infinite;
}

.shape-7 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #0088cc 0%, transparent 70%);
    animation: float7 26s ease-in-out infinite;
}

.shape-8 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, #6b46c1 0%, transparent 70%);
    animation: float8 24s ease-in-out infinite;
}

.shape-9 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.6) 0%, transparent 70%);
    animation: float9 18s ease-in-out infinite;
}

.shape-10 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.4) 0%, transparent 70%);
    animation: float10 32s ease-in-out infinite;
}

.shape-11 {
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, #0088cc 0%, transparent 70%);
    animation: float11 21s ease-in-out infinite;
}

.shape-12 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #6b46c1 0%, transparent 70%);
    animation: float12 27s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(200px, -150px) scale(1.2);
    }
    50% {
        transform: translate(-150px, 200px) scale(0.8);
    }
    75% {
        transform: translate(300px, 100px) scale(1.1);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-200px, 150px) scale(1.3);
    }
    66% {
        transform: translate(250px, -200px) scale(0.7);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(150px, -250px) scale(0.9);
    }
    40% {
        transform: translate(-250px, -100px) scale(1.1);
    }
    60% {
        transform: translate(100px, 250px) scale(0.8);
    }
    80% {
        transform: translate(-100px, 150px) scale(1.2);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(180px, 220px) scale(1.4);
    }
    60% {
        transform: translate(-180px, -220px) scale(0.6);
    }
    90% {
        transform: translate(120px, -120px) scale(1.1);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-300px, 100px) scale(0.9);
    }
    50% {
        transform: translate(200px, -300px) scale(1.2);
    }
    75% {
        transform: translate(-100px, 300px) scale(0.8);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(250px, 180px) scale(1.3);
    }
    80% {
        transform: translate(-250px, -180px) scale(0.7);
    }
}

@keyframes float7 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    35% {
        transform: translate(180px, -180px) scale(1.1);
    }
    70% {
        transform: translate(-220px, 160px) scale(0.9);
    }
}

@keyframes float8 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(200px, 200px) scale(1.2);
    }
}

@keyframes float9 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-180px, 220px) scale(1.3);
    }
    60% {
        transform: translate(160px, -200px) scale(0.8);
    }
    90% {
        transform: translate(120px, 140px) scale(1.1);
    }
}

@keyframes float10 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-250px, -120px) scale(0.9);
    }
    50% {
        transform: translate(180px, 250px) scale(1.1);
    }
    75% {
        transform: translate(120px, -180px) scale(1.0);
    }
}

@keyframes float11 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(210px, 170px) scale(1.2);
    }
    80% {
        transform: translate(-170px, -210px) scale(0.85);
    }
}

@keyframes float12 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-190px, 190px) scale(1.15);
    }
    60% {
        transform: translate(230px, -160px) scale(0.95);
    }
    90% {
        transform: translate(-110px, 130px) scale(1.05);
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 100px;
    width: auto;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
    background: transparent;
    animation: organicShape 8s ease-in-out infinite;
}

.brand-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* Cursor Glow Effect */
.cursor-glow {
    display: none;
}



@keyframes organicShape {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1.1) contrast(1.05);
    }
    25% {
        transform: rotate(2deg) scale(1.02);
        filter: brightness(1.15) contrast(1.08);
    }
    50% {
        transform: rotate(-1deg) scale(0.98);
        filter: brightness(1.05) contrast(1.02);
    }
    75% {
        transform: rotate(1deg) scale(1.01);
        filter: brightness(1.12) contrast(1.06);
    }
}

/* Corner Glow Effect */
.corner-glow {
    position: fixed;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.15) 0%, rgba(107, 70, 193, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
    animation: cornerPulse 4s ease-in-out infinite;
}

.corner-glow::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(15px);
    animation: cornerPulse 4s ease-in-out infinite reverse;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* No hover effects anymore */

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo {
        height: 80px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 70px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
}

/* Remove focus outline */
.logo-section:focus {
    outline: none;
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    animation: fadeIn 1s ease-out;
}

.logo {
    animation: fadeIn 1s ease-out 0.2s both;
}

.brand-name {
    animation: fadeIn 1s ease-out 0.4s both;
}