/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Header & Title */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 8rem;
    font-weight: 900;
    margin: -80px 0 25px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(
        90deg,
        #ff0000, #00ff4c,  #00b3fa, white, white, white, white
    );
    background-size: 1000% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: 
        gradient 8s ease-in-out 1 forwards,
        shadowPulse 6s ease-in-out 1 forwards;
    position: relative;
    display: inline-block;
    padding-top: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

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

}

@keyframes shadowPulse {
    0% {
        text-shadow: none;
        filter: none;
    }
    50% {
        text-shadow: none;
        filter: none;
    }
    75% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
        filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.7));
    }
    100% {
        text-shadow: none;
        filter: none;
    }
}


/* Back Button */
.back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
        scale: 0.99;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        scale: 1;
    }
}

/* Animate main content */
.content-wrapper > * {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Stagger animations */
.back-button { 
    animation: fadeInRight 0.8s ease-out 0.1s forwards;
    opacity: 0;
}
.header { 
    animation: fadeInRight 0.8s ease-out 0.3s forwards;
    opacity: 0;
}
.sections > section:nth-child(1) { 
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
    opacity: 0;
}
.sections > section:nth-child(2) { 
    animation: fadeInRight 0.8s ease-out 0.7s forwards;
    opacity: 0;
}
.sections > section:nth-child(3) { 
    animation: fadeInRight 0.8s ease-out 0.9s forwards;
    opacity: 0;
}
.sections > section:nth-child(4) { 
    animation: fadeInRight 0.8s ease-out 1.1s forwards;
    opacity: 0;
}

/* Layout */
.container {
    width: 80%;
    max-width: 1400px;
    padding: 60px 40px 40px;
    margin: 0 auto;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 33px;
    padding: 30px;
    padding-top: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

@media (max-width: 600px) {
    .sections {
        grid-template-columns: 1fr;
    }
}

.section {
    width: 100%;
}

/* Typography */
.section-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    margin: 15px 0 12px 0;
    letter-spacing: 1px;
    position: relative;
    padding-left: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 33px;
    padding: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.social-link i,
.social-link .x-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-link i {
    font-size: 20px;
}

.social-link .x-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.x-icon svg {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: scale(1.03);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}

/* Social Media Brand Colors */
.instagram { 
    background: linear-gradient(
        90deg,
        #ffff00,  /* Gelb */
        #ff0000,  /* Rot */
        #e6086c  /* Hellpink */
    );
    background-size: 100% 100%;
    background-clip: padding-box;
    overflow: hidden;
}

.twitter { 
    background: #000000;
}

.snapchat {
    background: #FFFC00;
    color: #000000 !important;
}

.linkedin { 
    background: #0A66C2;
}

.tiktok { 
    background: linear-gradient(125deg, #FE2C55 0%, #FE2C55 35%, #25F4EE 65%, #25F4EE 100%);
    position: relative;
    overflow: hidden;
}

.discord {
    background: #5865F2;
    position: relative;
}

.steam {
    background: #000000;
}

.github {
    background: #000000;
}

.epic-games {
    background: #2D2D2D;
    color: white;
}

/* Tooltip styles */
.social-link {
    position: relative;
}

.tooltip {
    position: absolute;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.social-link:hover .tooltip {
    opacity: 1;
}

/* Button reset for social-link buttons */
button.social-link {
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font: inherit;
}
