/* Behalten: Spezifische Stile für die Startseite */

/* Behalten: Spezifischer Container für Text */
.text-box {
  max-width: 500px;       /* Zeilenlänge begrenzen */
  margin: 0 auto 5px;    /* oben=0, auto (zentriert), unten=5px */
  padding: 10px;     /* Innenabstand */
  text-align: center;     /* Text zentrieren */
}

/* Behalten: Timer-Styling */
.timer {
    margin-top: 10px;
    font-size: 1.2em;
    color: #FFE5EE; /* Beibehalten oder Variable verwenden? Vorerst beibehalten. */
    font-weight: bold;
}

/* Behalten: Follow-Text Styling */
.follow-text {
    margin: 30px 0 20px;
    font-size: 1em;
}

/* Behalten: Social Buttons Container */
.social-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Behalten: Social Media Buttons (spezifisch für Startseite?) */
.social-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.7); /* Sternfarbe (#FFD700) mit Transparenz */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.9); /* Intensivere Sternfarbe beim Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Behalten: Social Icons (spezifisch für Startseite?) */
.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Macht die Icons weiß */
    transition: all 0.3s ease; /* Auch den Icons eine Transition geben */
}

/* Behalten: Spezifische SVG/IMG Selektoren für Social Icons */
.social-buttons-container svg.social-icon,
.social-buttons-container img.social-icon {
    filter: brightness(0) invert(1);
    stroke: white;
}

/* Behalten: Fokus-Zustand für Social Buttons */
.social-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 217, 0, 0.4);
}

/* Button-Styling von winsnake.css */
.button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--complementary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 
                0 1px 3px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #4eb472c6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 3px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Behalten: Logo-Animation Styles */
.logo-container {
    position: relative;
    overflow: hidden;
    height: 75px; /* Anpassen an die tatsächliche Logo-Höhe */
    margin-bottom: 20px;
}

.site-logo {
    display: block;
    margin: 0 auto;
    max-height: 100px; /* Anpassen an die tatsächliche Logo-Höhe */
    animation: logo-dance 5s ease-in-out infinite;
}

/* Behalten: Keyframes für die Tanz-Animation */
@keyframes logo-dance {
    0% {
        transform: translateX(-15px) rotate(-5deg);
    }
    25% {
        transform: translateX(0px) rotate(0deg) translateY(-5px);
    }
    50% {
        transform: translateX(15px) rotate(5deg);
    }
    75% {
        transform: translateX(0px) rotate(0deg) translateY(-5px);
    }
    100% {
        transform: translateX(-15px) rotate(-5deg);
    }
}