/* ===== GRUNDLEGENDE STILE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 20px;
    max-width: 550px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== CONTAINER-STYLING ===== */
.container {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

/* ===== PROFIL-BEREICH ===== */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.profile-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease 0.3s forwards;
}

.section-title {
    margin-bottom: 8px;
    color: white;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.6s forwards;
}

.section-subtitle {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

/* ===== SOZIALE MEDIA LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 48px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

/* ===== APP-LINKS BEREICH ===== */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
}

.link-item {
    width: 100%;
    height: 50px;
    padding: 0 32px 0 32px;
    background-color: white;
    border-radius: 25px;
    text-decoration: none;
    color: black;
    font-weight: 550;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    display: flex;
    align-items: center;
    text-align: left;
    transition: background 0.3s ease; 
}

.link-item:hover {
    background: rgb(232, 232, 232);
}

/* App-Icon Styling */
.link-app-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.link-app-icon img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.link-text {
    flex-grow: 1;
}

.link-icon {
    margin-left: auto;
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.1;
}

.link-icon img {
    width: 14px;
    height: 14px;
}

/* ===== ANIMATIONEN FÜR APP-BUTTONS ===== */
.app-1 {
    animation: fadeSlideUp 0.5s ease 1.5s forwards;
}

.app-2 {
    animation: fadeSlideUp 0.5s ease 1.7s forwards;
}

.app-3 {
    animation: fadeSlideUp 0.5s ease 1.9s forwards;
}

/* ===== SUPPORT/PAYPAL BEREICH ===== */
.paypal {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    background: rgb(18, 18, 18);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeSlideUp 0.65s ease 2.65s forwards;
}

.paypal h3 {
    margin-bottom: 8px;
    color: white;
}

.paypal p {
    color: rgba(255, 255, 255, 0.5);
}

.support {
    margin-top: 18px;
    background-color: white;
    text-align: center;
    font-weight: bold;
    justify-content: center;
    transform: translateY(0px);
    opacity: 1;
    cursor: pointer;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(0.98);
    }
}

/* Optional: Pausiert die Animation beim Hover für bessere Benutzererfahrung */
.support:hover {
    animation-play-state: paused;
}

.support img {
    height: 24px;
    justify-content: center;
    align-items: center;
    margin-right: 9px;
}

/* ===== FOOTER-BEREICH ===== */
.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-sections {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    order: 3;
}

.footer-section {
    min-width: 100%;
    text-align: center;
}

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

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

.logo-section {
    width: 100%;
    text-align: center;
    margin-top: 0;
    order: 1;
}

.logo-footer {
    display: flex;
    justify-content: center;
    margin: 0 auto 1rem;
}

.logo-footer img {
    margin-left: 0;
}

.quote {
    text-align: center;
}

.copyright {
    order: 4;
}

/* ===== ANIMATIONEN ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    .container {
        padding: 24px 24px 0px 24px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .profile-img {
        width: 140px;
        height: 140px;
    }
}