:root {
    --dark-bg: #0a1929;
    --primary-blue: #1e88e5;
    --accent-orange: #ff7043;
    --text-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    padding-top: 0;
}

.navbar {
    background: rgba(10, 25, 41, 0.4);
    padding: 0 8%;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 1000;
    height: 65px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    pointer-events: auto;
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.navbar-trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 999;
    background: linear-gradient(to bottom,
        rgba(10, 25, 41, 0.2) 0%,
        rgba(10, 25, 41, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-trigger:hover {
    opacity: 0.3;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, 
        var(--primary-blue) 0%,
        var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    opacity: 1;
    color: var(--accent-orange);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--accent-orange);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.75);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0 1rem;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.welcome-text {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    opacity: 0.9;
    font-weight: 400;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: var(--text-light);
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn:last-child {
    background: transparent;
    border: 1px solid var(--primary-blue);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
}

.hero-btn:last-child:hover {
    background: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 5px 15px rgba(255, 112, 67, 0.2);
}

/* Smooth Scroll Verhalten */
html {
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Optimierte Animationen */
.fade-in {
    opacity: 0;
    animation: quickFadeIn 0.5s ease-out forwards;
    animation-delay: 0.3s; /* Kürzere Verzögerung */
}

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

/* Stelle sicher, dass der Content vertikal zentriert bleibt */
@media (max-height: 600px) {
    .hero {
        padding: 6rem 1rem;
    }
}

/* Verbesserte Projekte Sektion */
.projects {
    min-height: auto;
    padding: 6rem 5% 2rem;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%,
        rgba(14, 30, 48, 0.95) 100%);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(30, 136, 229, 0.05) 0%,
        transparent 70%);
    pointer-events: none;
}

.projects h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 2rem;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(30, 136, 229, 0.9),
        rgba(255, 112, 67, 0.9)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-icon {
    font-size: 3.5rem;
    color: white;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-content {
    padding: 2rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(30, 136, 229, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.project-content p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

/* Verbesserte Hover Effekte */
.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-icon {
    transform: translateY(0) scale(1);
}

.project-card:hover .tag {
    background: rgba(30, 136, 229, 0.2);
    border-color: var(--primary-blue);
}

.project-card:hover .project-link {
    color: var(--accent-orange);
}

.project-card:hover .project-link::after {
    width: 100%;
}

/* Neue Page Transition Animation */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-bg);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition-overlay.active {
    transform: translateX(0);
}

.page-transition-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.transition-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

.transition-text {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.page-transition-overlay.active .transition-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Content Section Transitions */
.content-section {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    min-height: calc(100vh - 300px); /* Hinzugefügt: 300px ist Footer-Höhe + Padding */
}

/* Spezifische Section Styles */
#home {
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 50px); /* 50px ist die Höhe des Footer-Bottom */
}

.about {
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%,
        rgba(14, 30, 48, 0.95) 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    font-size: 2rem;
    top: 0;
    right: -1.5rem;
    background: var(--accent-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.stat-card:hover i {
    transform: scale(1.1);
}

.stat-card:hover .stat-label::after {
    width: 60px;
}

.team-section {
    margin-top: 8rem;
    text-align: center;
}

.team-section h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card:hover .team-role {
    color: var(--accent-orange);
}

.team-card:hover h4 {
    background: linear-gradient(45deg, var(--accent-orange), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-info {
    padding: 2.5rem;
}

.team-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.team-role {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.team-desc {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1rem;
    }

    .team-image {
        height: 350px;
    }
    
    .team-info {
        padding: 2rem;
    }
    
    .team-info h4 {
        font-size: 1.6rem;
    }
}

/* Kontakt Sektion Styles */
.contact {
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%,
        rgba(14, 30, 48, 0.95) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Hover Effekte */
.contact-details li:hover i {
    background: var(--primary-blue);
    color: var(--text-light);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info, .contact-form {
        padding: 2rem;
    }
}

/* Aktive Section */
.content-section.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
}

/* Moderner Footer Style */
.footer {
    background: linear-gradient(180deg, 
        rgba(10, 25, 41, 0.95) 0%,
        rgba(10, 25, 41, 0.98) 100%);
    padding: 2rem 0 0 0;
    width: 100%;
    margin-top: auto;
    position: relative;
    bottom: 0;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-section p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
    opacity: 1;
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: white;
}

/* Spezifische Hover-Effekte für verschiedene Plattformen */
.social-link .fa-whatsapp:hover {
    color: #25D366;
}

.social-link .fa-instagram:hover {
    color: #E4405F;
}

.social-link .fa-tiktok:hover {
    color: #000000;
}

.social-link .fa-youtube:hover {
    color: #FF0000;
}

.footer-bottom {
    margin-top: 0;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    position: relative;
    bottom: 0;
    z-index: 11;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    color: var(--text-light);
    opacity: 0.7;
}

.credits {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credits .fa-heart {
    color: var(--accent-orange);
    animation: heartbeat 1.5s ease infinite;
}

.designer-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-link:hover {
    color: var(--accent-orange);
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
}

/* Smooth Show/Hide Animation für den gesamten Content */
.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
}

.navbar.hidden .navbar-content {
    transform: translateY(-10px);
    opacity: 0;
}

.navbar.visible .navbar-content {
    transform: translateY(0);
    opacity: 1;
}

/* Verbesserte Intro Animation */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.intro-text {
    font-size: clamp(3rem, 15vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 15px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-blue);
    position: relative;
}

.intro-text::before {
    content: 'COREX';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--primary-blue);
    -webkit-text-stroke: 0;
    overflow: hidden;
    animation: fillText 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.intro-animation.fade-out {
    animation: fadeOutScale 0.8s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes fillText {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeOutScale {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Container für Content und Footer */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Wrapper für den Content */
.content-wrapper {
    flex: 1;
    position: relative;
}

/* Füge diese Styles am Ende der styles.css hinzu */

.legal-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%,
        rgba(14, 30, 48, 0.95) 100%);
    min-height: calc(100vh - 300px);
    position: relative;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.legal-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-block a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }

    .legal-content h1 {
        font-size: 2.5rem;
    }

    .legal-block h2 {
        font-size: 1.5rem;
    }
}

/* Füge diese Styles zu den Legal-Styles hinzu */
.legal-section {
    position: relative;
}

.legal-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.legal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.legal-loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.legal-loader-text {
    color: var(--text-light);
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Füge zu den Legal-Styles hinzu */
.legal-block ul {
    color: var(--text-light);
    opacity: 0.9;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-block h3 {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Spenden-Sektion Styles */
.donation-content {
    max-width: 1000px;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.donation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donation-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.donation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.donation-card p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.bank-details {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.iban {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: var(--text-light);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-blue);
}

.donation-info {
    margin-top: 4rem;
    text-align: center;
}

.donation-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donation-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.use-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.use-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.use-item p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .donation-options {
        grid-template-columns: 1fr;
    }
    
    .donation-info h2 {
        font-size: 2rem;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 41, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Content Sections */
    .hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-content {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-form {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Legal & Donation Sections */
    .legal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .donation-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-details li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1rem;
    }
}

/* Team Card Link Styles */
.team-image {
    display: block;
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: scale(1.02);
}

/* Discord Button Styles */
.discord-btn {
    background: #5865F2;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1 !important;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.discord-btn::after {
    display: none;
}

@media (max-width: 768px) {
    .discord-btn {
        margin: 1rem 2rem;
    }
}

/* Verbesserte Projekt-Card Styles */
.project-description {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 65px;
    opacity: 1;
}

.project-description.expanded {
    max-height: 800px;
}

.project-description.collapsing {
    max-height: 65px;
}

.expanded-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.project-description.expanded .expanded-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.expanded-content ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.expanded-content ul li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.expanded-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    opacity: 0.2;
}

.expanded-content ul li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    justify-content: center;
    pointer-events: auto;
}

.expand-btn::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    top: 0;
}

.expand-btn i {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

.expand-btn:hover {
    color: var(--accent-orange);
}

/* Hover Effekte */
.project-card:hover .expand-btn::before {
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-blue) 50%,
        transparent 100%
    );
}

/* Partnership Styles */
.partnership-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%,
        rgba(14, 30, 48, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.partnership-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.1);
    transition: all 0.3s ease;
}

.partner-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 41, 0.95) 0%,
        rgba(10, 25, 41, 0.98) 100%
    );
}

.partner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    background: linear-gradient(45deg, var(--text-light), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-info p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 8px;
    width: fit-content;
}

.partner-link:hover {
    color: var(--accent-orange);
    gap: 0.8rem;
    background: rgba(255, 112, 67, 0.1);
}

.partner-link i {
    transition: transform 0.3s ease;
}

.partner-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .partnership-section h2 {
        font-size: 2.5rem;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Timeline Styles */
.timeline-section {
    margin-top: 8rem;
    padding: 0 2rem;
}

.timeline-section h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom,
        rgba(30, 136, 229, 0.2),
        rgba(255, 112, 67, 0.2));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    left: 50%;
    transform: translateX(50px);
}

.timeline-item:nth-child(even).visible {
    transform: translateX(0);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--dark-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    top: 0;
    right: -35px;
    transform: translateX(50%);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -35px;
    transform: translateX(-50%);
}

.timeline-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    margin-right: 4rem;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 4rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    transform: rotate(45deg);
    top: 20px;
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -10px;
}

.timeline-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--text-light), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-date {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.timeline-sub-items {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-item {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.sub-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    transform: translateY(-50%);
}

.sub-date {
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::before {
        left: 0;
        right: auto;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(even)::before {
        left: 0;
    }
    
    .timeline-content {
        margin: 0 !important;
    }
    
    .timeline-content::before {
        display: none;
    }
}

/* Easter Egg Animation Verbesserungen */
.easter-egg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(15px);
}

.easter-egg-overlay.active {
    opacity: 1;
    visibility: visible;
}

.easter-egg-content {
    text-align: center;
    transform: scale(0.7) translateY(50px) rotate(-5deg);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.easter-egg-overlay.active .easter-egg-content {
    transform: scale(1) translateY(0) rotate(0);
    opacity: 1;
}

.easter-egg-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.easter-egg-title i {
    font-size: 2rem;
    color: var(--accent-orange);
    animation: starPulse 2s infinite;
    transform-origin: center;
}

.easter-egg-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

.easter-egg-overlay.active .easter-egg-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.easter-egg-notify-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

.easter-egg-overlay.active .easter-egg-notify-content {
    opacity: 1;
    transform: translateY(0);
}

.easter-egg-notify-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.easter-egg-notify-content p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.easter-egg-notify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-orange));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.easter-egg-notify-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0));
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s ease;
}

.easter-egg-notify-link:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.easter-egg-notify-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.easter-egg-notify-link i {
    transition: transform 0.3s ease;
}

.easter-egg-notify-link:hover i {
    transform: translateX(5px);
}

@keyframes starPulse {
    0% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Ausblend-Animation */
.easter-egg-overlay.removing {
    opacity: 0;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.easter-egg-overlay.removing .easter-egg-content {
    transform: scale(0.8) translateY(50px) rotate(5deg);
    opacity: 0;
}