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

        body {
            background-color: #231e3f;
            background-image: radial-gradient(
                ellipse at 50% 40%, 
                rgba(115, 99, 218, 0.25) 0%, 
                #231e3f 60%
            );

            font-family: 'Lilita One', cursive;
            min-height: 100vh;
            color: #fff;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 10px;
            flex-grow: 1;
        }

        .header {
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease-out;
            position: relative;
        }

        .top-nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 25px;
            background: rgba(0,0,0,0.25);
            border-radius: 20px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 98vw;
            min-height: 50px;
            height: 5vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
        }
        
        .nav-center-title {
            text-align: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links-right {
             position: relative;
        }

        .header h1 {
            font-size: 2.2rem;
            margin-bottom: 0;
            color: #fff;
            position: relative;
            text-align: center;
        }

        .author-credit {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: normal;
            display: block;
            text-align: center;
            margin: -2px auto 0;
            width: fit-content;
        }

        /* --- Burger Menu & Overlay --- */
        .burger-menu {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 2.2rem;
            height: 2.2rem;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 2010;
            position: relative;
        }
        .burger-menu span {
            width: 2.2rem;
            height: 0.25rem;
            background: #fff;
            border-radius: 10px;
            transition: all 0.3s linear;
            position: relative;
            transform-origin: 1px;
        }
        .burger-menu.active span:nth-child(1) { transform: rotate(45deg); }
        .burger-menu.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
        .burger-menu.active span:nth-child(3) { transform: rotate(-45deg); }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease-in-out;
        }
        .menu-overlay.open { opacity: 1; pointer-events: auto; }
        .menu-overlay a {
            color: #fff;
            text-decoration: none;
            font-size: 2.5rem;
            margin: 15px 0;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        .menu-overlay a:hover, .menu-overlay a.active { color: #f1c40f; transform: scale(1.05); }
        
        .menu-close {
            position: absolute;
            top: 30px;
            right: 50px;
            font-size: 3rem;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
            z-index: 2010;
        }

        .menu-close:hover {
            color: #f1c40f;
            transform: scale(1.1);
        }

        /* --- Language Selector Styles --- */
        #languageSelector {
            cursor: pointer;
        }
        .language-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            transition: background-color 0.2s ease;
            color: #fff;
        }
        .language-option:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .lang-flag {
            width: 24px;
            height: auto;
            border-radius: 4px;
            vertical-align: middle;
        }
        #selectedLanguage {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        #languageDropdown {
            display: none;
            position: absolute;
            top: 110%;
            right: 0;
            background: #2c2c2c;
            border-radius: 10px;
            overflow: hidden;
            z-index: 1001;
            border: 1px solid rgba(255,255,255,0.2);
        }
        #languageSelector.open #languageDropdown {
            display: block;
        }
        
        .content-panel {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 40px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease-out;
        }

        .content-panel h2 {
            margin-bottom: 20px;
            color: #f1c40f;
            text-align: center;
            font-size: 2.2rem;
        }
        
        .content-panel h3 {
            margin-top: 30px;
            margin-bottom: 15px;
            color: #f39c12;
            font-size: 1.8rem;
            border-bottom: 2px solid rgba(243, 156, 18, 0.5);
            padding-bottom: 8px;
        }

        .content-panel p {
            margin-bottom: 15px;
            line-height: 1.7;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Screenshot Frame Styles */
        .screenshot-frame {
            width: auto;
            height: auto;
            background: rgba(0, 0, 0, 0.3);
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .screenshot-frame:hover {
            border-color: rgba(241, 196, 15, 0.6);
            background: rgba(0, 0, 0, 0.4);
        }

        .screenshot-frame::before {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            opacity: 0.5;
        }

        .screenshot-frame::after {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem;
            opacity: 0.7;
        }

        .screenshot-placeholder {
            z-index: 1;
            font-weight: normal;
            padding: 20px;
        }
        
        .btn {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            font-family: 'Lilita One', cursive;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        @media (max-width: 768px) {
            .header h1 { font-size: 1.8rem; }
            .content-panel { padding: 20px; }
            .top-nav-bar {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 15px;
                height: auto;
                padding: 15px;
            }
            .nav-center-title {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            .nav-links-right { order: 3; }
            .burger-menu { order: 1; }
            .nav-center-title { order: 2; }
            .screenshot-frame {
                height: 200px;
                font-size: 1rem;
            }
        }
         @media (max-width: 480px) {
             .nav-center-title h1 { font-size: 1.5rem; }
             .author-credit { font-size: 0.8rem; }
             .screenshot-frame {
                height: 150px;
                font-size: 0.9rem;
            }
        }