* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a3e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #111122;
            padding: 15px 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ff9900;
        }
        .my-logo span {
            color: #00ccff;
        }
        .my-logo:hover {
            text-shadow: 0 0 20px #ffcc00;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .navbar {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: #222244;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 40, 0.9);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 15px #ff9900;
        }
        h2 {
            font-size: 2.2rem;
            color: #00ccff;
            margin: 30px 0 15px;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #aa66ff;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #ff9966;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #222244;
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #ffcc00;
            margin: 20px auto;
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 5px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 30px;
            padding-top: 10px;
            border-top: 1px dashed #444;
        }
        .interactive-section {
            background: #151530;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .interactive-section h3 {
            color: #ffcc00;
        }
        form {
            display: grid;
            gap: 15px;
            margin-top: 15px;
        }
        input, textarea, select, button {
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #444466;
            background: #222244;
            color: #f0f0f0;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #ff9900, #ffcc00);
            color: #111122;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        footer {
            background: #0a0a1a;
            padding: 30px 0;
            border-top: 3px solid #ffcc00;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 15px;
            background: #151530;
            border-radius: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 10px;
            font-size: 1.1rem;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .navbar {
                width: 100%;
                justify-content: space-between;
                margin-top: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #111122;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #ffcc00;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .interactive-section {
                padding: 15px;
            }
            form {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
