        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: #f5f5f5;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4a69bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f6b93b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #f6b93b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: #4a69bd;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f6b93b;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #f6b93b;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 3rem;
            color: #f6b93b;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #4a69bd;
            margin: 30px 0 15px;
            border-left: 5px solid #f6b93b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #78e08f;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #82ccdd;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: rgba(246, 185, 59, 0.2);
            padding: 15px;
            border-left: 4px solid #f6b93b;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .featured-image {
            width: 80%;
            margin: 25px auto;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #f6b93b;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #4a69bd;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 1rem;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #f6b93b, #e55039);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(229, 80, 57, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #f6b93b;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9f43;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 30px 0;
            margin-top: 40px;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
        friend-link a {
            font-size: 1.2rem;
            color: #78e08f;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .featured-image {
                width: 100%;
            }
            .friend-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                width: 95%;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
