html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f0e6ff 0%, #ede0ff 50%, #f5e8ff 100%);
            min-height: 100vh;
            padding: 20px;
            color: #777171;
            position: relative;
            overflow-x: hidden;
        }

        /* Katzen-Akzente im Hintergrund */
        .cat-bg {
            position: fixed;
            font-size: 40px;
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        .cat-1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
        .cat-2 { top: 20%; right: 8%; animation: float 8s ease-in-out infinite 1s; }
        .cat-3 { bottom: 15%; left: 12%; animation: float 7s ease-in-out infinite 2s; }
        .cat-4 { bottom: 20%; right: 10%; animation: float 6.5s ease-in-out infinite 1.5s; }
        .cat-5 { top: 50%; left: 3%; animation: float 9s ease-in-out infinite 0.5s; }
        .cat-6 { top: 60%; right: 5%; animation: float 7.5s ease-in-out infinite 2.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .nav-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .nav-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 12px;
            background: rgba(210, 180, 240, 0.6);
            color: #777171;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }

        .nav-btn:hover {
            background: rgba(210, 180, 240, 0.9);
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .nav-btn.active {
            background: rgba(180, 150, 220, 0.9);
            border-color: white;
        }

        .header {
            background: linear-gradient(135deg, rgba(220, 190, 255, 0.7), rgba(200, 160, 240, 0.7));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .header h1 {
            font-size: 48px;
            margin-bottom: 10px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            color: #777171;
        }

        .header p {
            font-size: 18px;
            margin-bottom: 5px;
            color: #777171;
        }

        .tagline {
            font-size: 14px;
            font-style: italic;
            color: #777171;
        }

        .content {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            font-size: 28px;
            margin-bottom: 15px;
            border-bottom: 3px solid rgba(255, 255, 255, 0.4);
            padding-bottom: 10px;
            color: #777171;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .section p {
            line-height: 1.8;
            font-size: 16px;
            color: #777171;
        }

        /* Galerie/Bilder */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .image-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .image-card:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .image-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .image-label {
            padding: 15px;
            background: rgba(220, 180, 240, 0.6);
            text-align: center;
            font-weight: bold;
            color: #777171;
        }

        /* Games Section */
        .games {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .game-card {
            background: rgba(220, 180, 240, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            color: #c36aff;
            font-weight: bold;
            font-size: 16px;
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .game-card:hover {
            transform: translateY(-5px);
            background: #2a1845;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .game-card i {
            display: block;
            font-size: 32px;
            margin-bottom: 10px;
        }

        /* Social Links */
        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }



        .discord-btn {
            background: rgba(88, 101, 242, 0.8);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .discord-btn:hover {
            background: rgba(88, 101, 242, 1);
            transform: translateY(-3px);
            border-color: white;
        }

        .twitch-btn {
            background: rgba(145, 70, 255, 0.8);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .twitch-btn:hover {
            background: rgba(145, 70, 255, 1);
            transform: translateY(-3px);
            border-color: white;
        }

        .tiktok-btn {
            background: rgba(50, 50, 50, 0.8);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .tiktok-btn:hover {
            background: rgba(80, 80, 80, 1);
            transform: translateY(-3px);
            border-color: white;
        }

        .community-btn {
            background: rgba(155, 100, 220, 0.8);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .community-btn:hover {
            background: rgba(155, 100, 220, 1);
            transform: translateY(-3px);
            border-color: white;
        }

        /* Freunde Section */
        .friends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .friend-card {
            background: rgba(220, 180, 240, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease;
        }

        .friend-card:hover {
            transform: translateY(-5px);
            background: rgba(200, 160, 240, 0.7);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .friend-card h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #777171;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .friend-card .friend-role {
            font-size: 13px;
            font-style: italic;
            opacity: 0.85;
            margin-bottom: 8px;
        }

        .friend-card p {
            font-size: 15px;
            line-height: 1.6;
        }

        /* Katzen-Box */
        .cat-box {
            background: rgba(255, 200, 230, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
            backdrop-filter: blur(5px);
            display: flex; 
            align-items: center; 
            gap: 15px;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .lightbox:target {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
        }

        .schliessen {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            text-decoration: none;
        }

        /* PayPal Section */
        .paypal-section {
            background: rgba(255, 200, 230, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
            backdrop-filter: blur(5px);
        }

        .paypal-section h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #777171;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .paypal-section p {
            margin-bottom: 20px;
        }

        .paypal-btn {
            background: linear-gradient(135deg, rgba(220, 100, 200, 0.8), rgba(200, 80, 180, 0.8));
            color: #ffffff;
            padding: 15px 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .paypal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
            background: linear-gradient(135deg, rgba(220, 100, 200, 1), rgba(200, 80, 180, 1));
        }

        .paypal-input {
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            width: 100%;
            max-width: 300px;
            margin-bottom: 15px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.2);
            color: #777171;
        }

        .paypal-input::placeholder {
            color: #777171;
        }

        .footer {
            text-align: center;
            color: #777171;
            font-size: 14px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }
            
            .content {
                padding: 20px;
            }

            .section h2 {
                font-size: 22px;
            }

            .nav-bar {
                gap: 10px;
            }

            .nav-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        a.friend-link h3{
            color: #6b2877;
            text-decoration: underline;
        }

        a.friend-link p:not(.friend-role){
            color: rgba(119, 15, 160, 0.72);
        }

        a.friend-link {
            text-decoration: none;
        }


.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: border-radius 0.3s ease;
    border: 2px solid transparent;
    color: #fafafa;
    overflow: hidden;
}

.social-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tooltip-text {
    max-height: 0;
    opacity: 0;
    width: 100%;
    text-align: center;
    font-weight: normal;
    font-size: 13px;
    padding: 0, 0, 10px, 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-bottom 0.3s ease;
}

.tooltip-container:hover .tooltip-text {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

.tooltip-container {
    display: inline-block;
    cursor: pointer;
}

.cat-karussell {
    width: 140px;
    height: 100px;
}

.cat-karussell img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.lightbox-pfeil {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    user-select: none;
    z-index: 1000;
    transition: opacity 0.2s ease;
}

.lightbox-pfeil:hover {
    opacity: 0.6;
}

.pfeil-links {
    left: 20px;
}

.pfeil-rechts {
    right: 20px;
}