
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #E8ECEF;
            color: #2A2A2A;
            line-height: 1.5;
        }

        a {
            color: #1a73e8;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Boxed Container */
        .boxed-container {
            max-width: 1000px;
            margin: 24px auto;
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            border: 1px solid #E0E4E8;
        }

        /* Header */
        header {
            background: #1a73e8;
            color: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }

        .logo img {
            max-width: 150px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .nav-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #FFFFFF;
        }

        .header-buttons {
            display: flex;
            gap: 12px;
        }

        .header-buttons a {
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .login-btn {
            background: #FFFFFF;
            color: #1a73e8;
            border: 1px solid #FFFFFF;
        }

        .login-btn:hover {
            background: #F5F6F5;
            text-decoration: none;
        }

        .register-btn {
            background: #003087;
            color: #FFFFFF;
        }

        .register-btn:hover {
            background: #002066;
            text-decoration: none;
        }

        /* Menüleiste */
        .menu-bar {
            background: #F9FAFB;
            border-bottom: 1px solid #E0E4E8;
            padding: 12px 24px;
        }

        .menu-bar ul {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .menu-bar li {
            position: relative;
            margin-right: 24px;
        }

        .menu-bar li a, .menu-bar li span {
            font-size: 16px;
            font-weight: 500;
            color: #2A2A2A;
            padding: 8px;
            display: block;
            cursor: pointer;
            transition: color 0.2s;
        }

        .menu-bar li a:hover, .menu-bar li span:hover {
            color: #1a73e8;
        }

        .menu-bar .home-icon a {
            font-size: 20px;
            padding: 8px 12px;
        }

        .menu-bar .separator {
            width: 1px;
            height: 24px;
            background: #E0E4E8;
            margin: 0 12px;
        }

        .menu-bar .dropdown {
            position: relative;
        }

        .menu-bar .dropdown-toggle {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .menu-bar .dropdown-toggle::after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #2A2A2A;
            margin-left: 8px;
            transition: border-top-color 0.2s;
        }

        .menu-bar .dropdown-toggle:hover::after {
            border-top-color: #1a73e8;
        }

        .menu-bar .dropdown.active .dropdown-menu {
            display: flex;
        }

        .menu-bar .dropdown-menu {
            display: none;
            position: absolute;
            background: #FFFFFF;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            top: 100%;
            left: 0;
            min-width: 200px;
            flex-direction: column;
            z-index: 10;
        }

        /* Slider */
        .hero-slider {
            position: relative;
            margin: 24px;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            background: #E6F3E6;
            background-size: cover;
            background-position: right center;
            display: flex;
            align-items: center;
            padding: 32px;
        }

        .slide-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            padding: 24px;
            max-width: 400px;
        }

        .slide-content h1 {
            font-size: 36px;
            font-weight: 700;
            color: #2A2A2A;
            margin-bottom: 16px;
        }

        .slide-content p {
            font-size: 18px;
            color: #4A4A4A;
            margin-bottom: 24px;
        }

        .btn {
            display: inline-block;
            background: #FFC107;
            color: #000;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.2s;
        }

        .btn:hover {
            background: #FFB300;
        }

        .slider-arrow {
            position: fixed;
            background: #FFFFFF;
            color: #1a73e8;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            z-index: 100;
            transition: background 0.2s, color 0.2s;
        }

        .slider-arrow:hover {
            background: #1a73e8;
            color: #FFFFFF;
        }

        .arrow-left {
            opacity: 1;
        }

        .arrow-right {
            opacity: 1;
        }

        .slider-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #FFFFFF;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.2s;
        }

        .dot.active {
            opacity: 1;
            background: #1a73e8;
        }

        /* Highlight Box */
        .highlight-box {
    margin: 24px;
    padding: 35px;
    background: #1a73e8;
    /* border-radius: 8px; */
    /* max-width: 600px; */
    text-align: center;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
}

        .highlight-box p {
            font-size: 24px;
            font-weight: 700;
        }

        /* Sektionen */
        .top-games, .adventure-games, .beliebte-games, .puzzle-games, .quick-games {
            margin: 24px;
            padding: 24px;
            background: #FFFFFF;
        }

       .arcade-games, .shooting-games {
    /* margin: 24px; */
    padding: 24px;
    background: #F5F6F5;
    /* border-radius: 8px; */
}

        .top-games h2, .arcade-games h2, .adventure-games h2, .shooting-games h2, .beliebte-games h2, .puzzle-games h2, .quick-games h2 {
            font-size: 28px;
            font-weight: 700;
            color: #2A2A2A;
            text-align: center;
            margin-bottom: 24px;
        }

        .games-grid, .arcade-grid, .adventure-grid, .shooting-grid, .beliebte-grid, .puzzle-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .game-card img, .arcade-card img, .adventure-card img, .shooting-card img, .beliebte-card img, .puzzle-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }

        .quick-card img {
            width: 100%;
            height: 75px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }

        /* Footer */
        footer {
    /* margin: 24px; */
    padding: 24px;
    background: #F5F6F5;
    border-radius: 8px;
}

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-column a {
            font-size: 16px;
            font-weight: 500;
            color: #1a73e8;
        }

        .footer-column p {
            font-size: 16px;
            font-weight: 400;
            color: #2A2A2A;
        }

        /* Responsive Design */
        @media (max-width: 1099px) {
            .boxed-container {
                margin: 16px;
            }

            .hero-slider {
                margin: 16px;
                height: 350px;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .games-grid, .arcade-grid, .adventure-grid, .shooting-grid, .beliebte-grid, .puzzle-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .quick-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .highlight-box {
                max-width: 90%;
            }

            footer {
                margin: 16px;
                padding: 16px;
            }

            .header-buttons a {
                padding: 6px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 767px) {
            .logo img {
                max-width: 120px;
            }

            .nav-toggle {
                display: block;
                margin-left: auto;
                order: 2;
            }

            .header-buttons {
                display: none;
            }

            .menu-bar {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                width: 100%;
                background: #F9FAFB;
                padding: 16px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }

            .menu-bar.active {
                display: block;
            }

            .menu-bar ul {
                flex-direction: column;
                align-items: flex-start;
            }

            .menu-bar li {
                margin: 8px 0;
                width: 100%;
            }

            .menu-bar .separator {
                display: none;
            }

            .menu-bar .dropdown-menu {
                position: static;
                box-shadow: none;
                display: none;
            }

            .menu-bar .dropdown.active .dropdown-menu {
                display: block;
            }

            .menu-bar .header-buttons {
                display: flex;
                flex-direction: column;
                gap: 8px;
                width: 100%;
                margin-top: 16px;
            }

            .menu-bar .header-buttons a {
                display: block;
                text-align: center;
                padding: 10px;
                font-size: 16px;
                margin: 8px 0;
            }

            .hero-slider {
                height: auto;
                min-height: 500px;
            }

            .slide {
                flex-direction: column;
                background-position: center;
                padding: 24px;
            }

            .slide-content {
                max-width: none;
                margin-bottom: 24px;
                text-align: center;
            }

            .slide-content h1 {
                font-size: 28px;
            }

            .slide-content p {
                font-size: 14px;
            }

            .slider-arrow {
                position: absolute;
                z-index: 100;
            }

            .arrow-left {
                left: 12px;
                top: 50%;
                transform: translateY(-50%);
            }

            .arrow-right {
                right: 12px;
                top: 50%;
                transform: translateY(-50%);
            }

            .games-grid, .arcade-grid, .adventure-grid, .shooting-grid, .beliebte-grid, .puzzle-grid {
                grid-template-columns: 1fr;
            }

            .quick-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .game-card img, .arcade-card img, .adventure-card img, .shooting-card img, .beliebte-card img, .puzzle-card img {
                max-width: 280px;
                height: auto;
                margin: 0 auto;
            }

            .quick-card img {
                max-width: 140px;
                height: auto;
                margin: 0 auto;
            }

            .highlight-box {
                max-width: 100%;
                padding: 12px;
            }

            .highlight-box p {
                font-size: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }

            .footer-column {
                align-items: center;
            }
        }
