.playball-regular {
            font-family: "Playball", cursive;
            font-weight: 400;
            font-style: normal;
        }

        #header-font {
            font-family: "Playball", cursive;
            font-size: xxx-large;
            color: #F9B233
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        body.light-mode {
            background: #f8f8f8;
            color: #0a0a0a;
        }

        /* Theme Switch */
        .theme-switch-wrapper {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1001;
        }

        .switch {
            font-size: 17px;
            position: relative;
            display: inline-block;
            width: 4em;
            height: 2.2em;
            border-radius: 30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #2a2a2a;
            transition: 0.4s;
            border-radius: 30px;
            overflow: hidden;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 1.2em;
            width: 1.2em;
            border-radius: 20px;
            left: 0.5em;
            bottom: 0.5em;
            transition: 0.4s;
            transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
            box-shadow: inset 8px -4px 0px 0px #fff;
        }

        .switch input:checked + .slider {
            background-color: #00a6ff;
        }

        .switch input:checked + .slider:before {
            transform: translateX(1.8em);
            box-shadow: inset 15px -4px 0px 15px #ffcf48;
        }

        .star {
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            width: 5px;
            transition: all 0.4s;
            height: 5px;
        }

        .star_1 {
            left: 2.5em;
            top: 0.5em;
        }

        .star_2 {
            left: 2.2em;
            top: 1.2em;
        }

        .star_3 {
            left: 3em;
            top: 0.9em;
        }

        .switch input:checked ~ .slider .star {
            opacity: 0;
        }

        .cloud {
            width: 3.5em;
            position: absolute;
            bottom: -1.4em;
            left: -1.1em;
            opacity: 0;
            transition: all 0.4s;
        }

        .switch input:checked ~ .slider .cloud {
            opacity: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        body.light-mode nav {
            background: rgba(248, 248, 248, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 100px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: opacity 0.3s;
        }

        body.light-mode .menu a {
            color: #0a0a0a;
        }

        .menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4B93FF;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .menu a.active::after {
            opacity: 1;
            animation: waveMove 2s ease-in-out infinite;
        }

        @keyframes waveMove {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        /* Hero */
        .hero {
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            font-weight: 400;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 4rem;
            position: relative;
        }

        .section-intro {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .section-intro h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-intro p {
            font-size: 1.2rem;
            color: #888;
            line-height: 1.8;
        }

        body.light-mode .section-intro p {
            color: #555;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
            font-family: "Space Grotesk", sans-serif;
        }

        body.light-mode .filter-btn {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #0a0a0a;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            border-color: #4B93FF;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(75, 147, 255, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }

        .gallery-item-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .gallery-item-category {
            font-size: 0.9rem;
            color: #F9B233;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-info {
            text-align: center;
            margin-top: 1.5rem;
        }

        .lightbox-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .lightbox-category {
            font-size: 1rem;
            color: #F9B233;
        }

        .lightbox-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        /* Placeholder für leere Galerie */
        .gallery-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: #888;
        }

        .gallery-empty svg {
            width: 100px;
            height: 100px;
            margin-bottom: 2rem;
            opacity: 0.5;
        }

        .gallery-empty h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #888;
        }

        .gallery-empty p {
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            padding: 6rem 4rem 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .footer-desc {
            color: #555;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.light-mode .footer-links a {
            color: #555;
        }

        .footer-links a:hover {
            color: #4B93FF;
        }

        /* Tooltip Container */
        .tooltip-container {
            position: relative;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 17px;
            border-radius: 10px;
        }

        .tooltip {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border-radius: 15px;
            box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                5px 5px 15px rgba(0, 0, 0, 0.3), 
                -5px -5px 15px rgba(255, 255, 255, 0.1);
        }

        .tooltip-container:hover .tooltip {
            top: -150px;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .profile {
            border-radius: 10px 15px;
            padding: 10px;
        }

        .tooltip-container:has(.instagramSVG) .profile {
            background: #2a2b2f;
            border: 1px solid #52382f;
        }

        .tooltip-container:has(.facebookSVG) .profile {
            background: #3b5998;
            border: 1px solid #29487d;
        }

        .user {
            display: flex;
            gap: 10px;
        }

        .img {
            width: 50px;
            height: 50px;
            font-size: 25px;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        .tooltip-container:has(.instagramSVG) .img {
            border: 1px solid #e6683c;
        }

        .tooltip-container:has(.facebookSVG) .img {
            border: 1px solid #1877f2;
        }

        .details {
            display: flex;
            flex-direction: column;
            gap: 0;
            color: #fff;
        }

        .name {
            font-size: 17px;
            font-weight: 700;
        }

        .tooltip-container:has(.instagramSVG) .name {
            color: #e6683c;
        }

        .tooltip-container:has(.facebookSVG) .name {
            color: #1877f2;
        }

        .username {
            font-size: 14px;
            color: #fff;
        }

        .about {
            color: #ccc;
            padding-top: 5px;
            font-size: 14px;
        }

        .icon {
            text-decoration: none;
            color: #fff;
            display: block;
            position: relative;
        }

        .layer {
            width: 55px;
            height: 55px;
            transition: transform 0.3s;
            position: relative;
        }

        .icon:hover .layer {
            transform: rotate(-35deg) skew(20deg);
        }

        .layer span {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border: 1px solid #fff;
            transition: all 0.3s;
        }

        .tooltip-container:has(.instagramSVG) .layer span {
            border-radius: 15px;
            border-color: #e6683c;
        }

        .tooltip-container:has(.facebookSVG) .layer {
            border: 3px solid #1877f2;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tooltip-container:has(.facebookSVG) .icon:hover .layer {
            box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
        }

        .tooltip-container:has(.facebookSVG) .layer span {
            border-radius: 50%;
            border-color: #1877f2;
        }

        .tooltip-container:has(.instagramSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #e6683c;
        }

        .tooltip-container:has(.facebookSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #1877f2;
        }

        .icon .text {
            position: absolute;
            left: 50%;
            bottom: -5px;
            opacity: 0;
            font-weight: 500;
            transform: translateX(-50%);
            transition: bottom 0.3s ease, opacity 0.3s ease;
            white-space: nowrap;
        }

        .icon:hover .text {
            bottom: -35px;
            opacity: 1;
        }

        .tooltip-container:has(.instagramSVG) .icon .text {
            color: #e6683c;
        }

        .tooltip-container:has(.facebookSVG) .icon .text {
            color: #1877f2;
        }

        .icon:hover .layer span:nth-child(1) {
            opacity: 0.2;
        }

        .icon:hover .layer span:nth-child(2) {
            opacity: 0.4;
            transform: translate(5px, -5px);
        }

        .icon:hover .layer span:nth-child(3) {
            opacity: 0.6;
            transform: translate(10px, -10px);
        }

        .icon:hover .layer span:nth-child(4) {
            opacity: 0.8;
            transform: translate(15px, -15px);
        }

        .icon:hover .layer span:nth-child(5) {
            opacity: 1;
            transform: translate(20px, -20px);
        }

        .instagramSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%
            );
            border-radius: 15px;
            width: 55px;
            height: 55px;
        }

        .facebookSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #1877f2 0%,
                #3b5998 25%,
                #1877f2 50%,
                #3b5998 75%,
                #1877f2 100%
            );
            border-radius: 50%;
            width: 55px;
            height: 55px;
        }

        .svgIcon {
            width: 25px;
            height: 25px;
        }

        .footer-bottom {
            text-align: center;
            color: #555;
            padding-top: 3rem;
            font-size: 0.9rem;
        }

        body.light-mode .footer-bottom {
            color: #888;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
            }
            
            body.light-mode nav {
                background: rgba(248, 248, 248, 0.98);
            }
            
            .logo {
                height: 50px;
                position: relative;
                z-index: 1002;
            }
            
            nav::after {
                content: '☰';
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                font-size: 2rem;
                cursor: pointer;
                z-index: 1002;
                color: #fff;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            body.light-mode nav::after {
                color: #0a0a0a;
            }
            
            .menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 5rem 0 2rem 0;
                transition: left 0.3s ease;
                z-index: 1001;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
            }
            
            body.light-mode .menu {
                background: rgba(248, 248, 248, 0.98);
            }
            
            .menu.mobile-active {
                left: 0;
            }
            
            .menu li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            body.light-mode .menu li {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .menu a {
                display: block;
                padding: 1.2rem 2rem;
                font-size: 1.1rem;
            }
            
            .menu a::after {
                display: none;
            }

            .hero {
                height: 50vh;
                min-height: 400px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            #header-font {
                font-size: x-large;
            }

            .gallery-section {
                padding: 3rem 1rem;
            }

            .section-intro {
                margin-bottom: 3rem;
            }

            .section-intro h2 {
                font-size: 1.8rem;
            }

            .section-intro p {
                font-size: 1rem;
            }

            .filter-buttons {
                gap: 0.5rem;
                margin-bottom: 2rem;
            }

            .filter-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .lightbox-content {
                max-width: 95%;
            }

            .lightbox-content img {
                max-height: 70vh;
            }

            .lightbox-close {
                top: 0.5rem;
                right: 0.5rem;
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .lightbox-prev {
                left: 0.5rem;
            }

            .lightbox-next {
                right: 0.5rem;
            }

            .lightbox-title {
                font-size: 1.2rem;
            }

            .lightbox-category {
                font-size: 0.9rem;
            }

            .tooltip-container:hover .tooltip {
                display: none;
            }
            
            .icon .text {
                display: none;
            }
            
            .layer {
                width: 50px;
                height: 50px;
            }
            
            .instagramSVG,
            .facebookSVG {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            footer {
                padding: 3rem 1rem 2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 2rem;
            }
            
            .footer-brand {
                font-size: 1.3rem;
            }
            
            .footer-desc {
                font-size: 0.9rem;
            }
            
            .footer-title {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .footer-links {
                gap: 0.8rem;
            }
            
            .footer-links a {
                font-size: 0.9rem;
            }
            
            .footer-bottom {
                font-size: 0.85rem;
                padding-top: 2rem;
            }

            .theme-switch-wrapper {
                bottom: 1rem;
                right: 1rem;
            }
            
            .switch {
                font-size: 14px;
                width: 3.5em;
                height: 2em;
            }
            
            .slider:before {
                height: 1em;
                width: 1em;
                left: 0.4em;
                bottom: 0.5em;
            }
            
            .switch input:checked + .slider:before {
                transform: translateX(1.5em);
            }
            
            .star {
                width: 4px;
                height: 4px;
            }
            
            .cloud {
                width: 3em;
            }
        }

        @media (max-width: 480px) {
            .logo {
                height: 40px;
            }

            .hero {
                height: 40vh;
                min-height: 300px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            #header-font {
                font-size: large;
            }

            .gallery-section {
                padding: 2.5rem 1rem;
            }

            .section-intro h2 {
                font-size: 1.5rem;
            }

            .filter-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }

            .gallery-grid {
                gap: 1rem;
            }

            .layer {
                width: 45px;
                height: 45px;
            }
            
            .instagramSVG,
            .facebookSVG {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }