        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #FFCC00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #FFF;
            text-shadow: 0 0 8px #FFCC00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10,10,42,0.95);
            border-bottom: 2px solid #FFCC00;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #FFCC00;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px #FFCC00;
            font-family: 'Arial Black', sans-serif;
        }
        .my-logo span {
            color: #FFF;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 4px;
            background: #FFCC00;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-menu li a:hover {
            background: #FFCC00;
            color: #0a0a2a;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #FFCC00;
        }
        .search-box {
            margin: 30px auto;
            max-width: 600px;
            text-align: center;
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: #FFCC00;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 50px;
            background: #222244;
            color: #FFF;
            font-size: 1.1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus {
            border-color: #FFCC00;
        }
        .search-btn {
            padding: 15px 25px;
            background: #FFCC00;
            color: #0a0a2a;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: #FFF;
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 3.5rem;
            color: #FFCC00;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(255,204,0,0.5);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #FFCC00;
            margin: 40px 0 20px;
            border-left: 5px solid #FFCC00;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #FFF;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #DDD;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #FFCC00, #FF9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 8px;
        }
        .content-img {
            margin: 30px auto;
            text-align: center;
        }
        .content-img img {
            max-height: 500px;
            object-fit: cover;
            border: 5px solid #FFCC00;
        }
        .content-img figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #AAA;
        }
        .content-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
        }
        .content-links a {
            display: inline-block;
            padding: 12px 25px;
            background: #222244;
            border: 2px solid #444;
            border-radius: 10px;
            font-weight: bold;
        }
        .content-links a:hover {
            background: #FFCC00;
            color: #0a0a2a;
            border-color: #FFCC00;
        }
        .review-section {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            border: 2px solid #444;
        }
        .review-form, .score-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: bold;
            color: #FFCC00;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #444;
            background: #222244;
            color: #FFF;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #FFCC00;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.3s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFCC00;
        }
        .submit-btn {
            padding: 18px;
            background: #FFCC00;
            color: #0a0a2a;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: #FFF;
            transform: translateY(-5px);
        }
        footer {
            background: #0a0a2a;
            border-top: 2px solid #FFCC00;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #FFCC00;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: #222244;
            border-radius: 8px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: #333366;
            transform: translateX(10px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #AAA;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #FFCC00;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .nav-menu {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 90px;
                right: -100%;
                flex-direction: column;
                background: rgba(10,10,42,0.98);
                width: 80%;
                max-width: 300px;
                padding: 30px;
                border-radius: 0 0 0 20px;
                border-left: 2px solid #FFCC00;
                border-bottom: 2px solid #FFCC00;
                transition: right 0.5s ease;
            }
            .nav-menu.active {
                right: 0;
            }
            .my-logo {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .content-links {
                flex-direction: column;
                align-items: center;
            }
        }
