        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            background-color: rgba(0, 40, 85, 0.8);
        }
        .nav-links li a:hover {
            background-color: #0056b3;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #001a33;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            color: #a0a0ff;
        }
        .breadcrumb li a {
            color: #00a8ff;
        }
        .breadcrumb li::after {
            content: '›';
            margin-left: 10px;
            color: #ffcc00;
        }
        .breadcrumb li:last-child::after {
            content: '';
        }
        main {
            padding: 30px 0;
            background-color: #0f0f2a;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        article {
            padding: 20px;
        }
        h1, h2, h3, h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            border-bottom: 3px solid #0056b3;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-left: 5px solid #00a8ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #00d4ff;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 20px;
            color: #a0a0ff;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        strong {
            color: #ff9900;
            font-weight: 800;
        }
        em {
            color: #00ffaa;
            font-style: italic;
        }
        .highlight {
            background-color: #002b5c;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .search-section, .comments-section, .rating-section {
            background-color: #001f3f;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid #0056b3;
        }
        .search-section h3, .comments-section h3, .rating-section h3 {
            color: #ffcc00;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #0056b3;
            background-color: #0a0a1a;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            color: #001f3f;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .featured-image {
            text-align: center;
            margin: 40px 0;
        }
        .featured-image img {
            max-width: 90%;
            border: 5px solid #0056b3;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #a0a0ff;
        }
        footer {
            background: linear-gradient(135deg, #001f3f 0%, #000814 100%);
            padding: 40px 0;
            border-top: 3px solid #ffcc00;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #ffcc00;
        }
        .friend-links {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .friend-links li a {
            font-size: 1.1rem;
            padding: 10px 20px;
            background-color: #003366;
            border-radius: 5px;
        }
        .friend-links li a:hover {
            background-color: #0056b3;
        }
        .copyright {
            color: #a0a0ff;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #0056b3;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .nav-links { gap: 15px; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .breadcrumb ol {
                justify-content: center;
            }
            .friend-links {
                flex-direction: column;
                gap: 15px;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            p { font-size: 1rem; }
            .container { padding: 0 10px; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .search-section, .comments-section, .rating-section {
            animation: fadeIn 1s ease-out;
        }
