        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f1a2f 0%, #2a3f5f 100%);
            color: #e0e7ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 26, 47, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff5722;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px #ff5722;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ff8a65;
            text-shadow: 0 0 20px #ff8a65;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #4fc3f7;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #b0bec5;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #b0bec5;
        }
        .breadcrumb a:hover {
            color: #4fc3f7;
        }
        main {
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(30, 40, 60, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: #ff9800;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 0 10px #ff9800;
        }
        h2 {
            font-size: 2.2rem;
            color: #4caf50;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #4caf50;
        }
        h3 {
            font-size: 1.8rem;
            color: #00bcd4;
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #e91e63;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #ffeb3b;
            font-weight: 700;
        }
        .highlight {
            background: rgba(255, 152, 0, 0.2);
            padding: 15px;
            border-left: 5px solid #ff9800;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 80%;
        }
        .last-updated {
            font-style: italic;
            color: #9e9e9e;
            margin-top: 30px;
            text-align: right;
            font-size: 0.9rem;
        }
        aside {
            background: rgba(30, 40, 60, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            align-self: start;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #9c27b0;
            margin-bottom: 15px;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #4fc3f7;
            border-radius: 8px;
            background: rgba(15, 26, 47, 0.7);
            color: #e0e7ff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff9800;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #4fc3f7, #29b6f6);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, #29b6f6, #0288d1);
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd740;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ffab00;
        }
        footer {
            background: rgba(15, 26, 47, 0.95);
            padding: 40px 0;
            margin-top: 50px;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 25px 0;
            padding: 20px;
            background: rgba(30, 40, 60, 0.6);
            border-radius: 10px;
        }
        friend-link h3 {
            color: #ff9800;
            margin-bottom: 15px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        friend-link ul li a {
            font-size: 1.1rem;
            padding: 8px 15px;
            background: rgba(79, 195, 247, 0.1);
            border-radius: 5px;
        }
        .copyright {
            margin-top: 30px;
            color: #b0bec5;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            nav ul {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 26, 47, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
                border-radius: 0 0 15px 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            friend-link ul {
                flex-direction: column;
                gap: 15px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 20px;
            }
            .my-logo {
                font-size: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, header, footer {
            animation: fadeIn 0.8s ease-out;
        }
