/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #b8b8b8;
    --accent-color: #ff0000;
    --accent-glow: rgba(255, 0, 0, 0.6);
    --bg-overlay: rgba(0, 0, 0, 0.85);
}

body {
    font-family: 'Impact', 'Haettenschweiler', 'Franklin Gothic Bold', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
    background: #000;
}

/* Container & Background */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.7) 0%, 
                rgba(0, 0, 0, 0.85) 50%, 
                rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Content Area */
.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s ease-in;
}

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

/* Typography */
.title {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    text-shadow: 
        3px 3px 0px #000,
        5px 5px 15px rgba(255, 0, 0, 0.5),
        -1px -1px 0px rgba(255, 0, 0, 0.3);
    animation: slideDown 0.8s ease-out;
    text-transform: uppercase;
}

.real-name {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: slideDown 0.8s ease-out 0.1s backwards;
    font-family: 'Arial', sans-serif;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                var(--accent-color) 50%, 
                transparent 100%);
    margin: 0 auto 1.5rem;
    animation: slideDown 0.8s ease-out 0.2s backwards;
    box-shadow: 0 0 10px var(--accent-glow);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    animation: slideDown 0.8s ease-out 0.3s backwards;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--secondary-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 0.8s ease-out 0.4s backwards;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    font-style: italic;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-8px) scale(1.15);
    border-color: var(--accent-color);
    box-shadow: 
        0 0 20px var(--accent-glow),
        0 10px 30px rgba(0, 0, 0, 0.6);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:active {
    transform: translateY(-3px) scale(1.08);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        background-attachment: scroll;
    }
    
    .title {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.3rem;
    }
    
    .real-name {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .divider {
        width: 80px;
        height: 3px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .social-icons {
        gap: 1.2rem;
    }
    
    .social-icons a {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.08em;
    }
    
    .real-name {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .divider {
        width: 60px;
        height: 3px;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.15em;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .social-icons {
        gap: 0.9rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 2px;
    }
}

/* Rough Texture Effect */
@media (min-width: 769px) {
    .content::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255, 255, 255, 0.01) 2px,
                rgba(255, 255, 255, 0.01) 4px
            );
        pointer-events: none;
        z-index: -1;
    }
}

