* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Fallback */
    background-color: #111a2c;
  
    /* Blau → Indigo (neu) → Violett */
    background: linear-gradient(
  135deg,
  #141a33 0%,   /* dunkles Blau mit leichtem Violett-Touch */
  #311a45 100%  /* tiefes Violett mit Blauanteil */
);

    /* Weiche Bewegung */
    background-size: 400% 400%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}



.head-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(
        135deg,
        #111827 0%,
        #1e293b 50%,
        #0f172a 100%
    );
    border-radius: 33px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
    margin-top: 20px;
}

.header-content h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 28px;
}

.header-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 16px;
}

.imperium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.imperium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    background: linear-gradient(45deg, #4338ca, #6d28d9);
}

.imperium-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.imperium-button:hover i {
    transform: translateX(4px);
}

.container, .live-container {
    width: 100%;
    max-width: 800px;
    border-radius: 33px;
    padding: 30px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.container {
    background: linear-gradient(
        135deg,
        #111827 0%,   /* sehr dunkles Blau-Schwarz */
        #1e293b 50%,  /* leicht helleres Graublau */
        #0f172a 100%  /* tiefer Navy-Ton */
    );
}

.live-container {
    background: linear-gradient(
        135deg,
        #1a1035 0%,   /* tiefes Violett */
        #2a1a4a 50%,  /* mittleres Violett */
        #1a0f35 100%  /* tiefes Violett */
    );
    color: #ffffff;
    margin-top: 40px;
}

.live-container h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 28px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-content {
    padding: 20px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 20px;
}

.project-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.project-link {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 28px;
}

p {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 16px;
}
.imperium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 33px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 300px;
}

.imperium-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.imperium-button i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.imperium-button:hover i {
    transform: translateX(4px);
}

.social-title {
    color: #ffffff;
    margin: 25px 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.section {
    width: 100%;
}

.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 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.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);
}

.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: translateY(-3px);
    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;
}

.steam {
    background: linear-gradient(135deg, #00adee, #0082c9);
}

.paypal {
    background: linear-gradient(135deg, #009cde, #003087);
}

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

.twitter { 
    background: #000000;
}

.email {
    background: #EA4335;
}

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

.linkedin { 
    background: #0A66C2;
}

.github { 
    background: #000000;
}

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

/* Tooltip Styles */
.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
}

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

button.social-link {
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    p {
        font-size: 14px;
    }
    
    .social-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}
