        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #4cd137;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #fbc531;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #e84118;
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #00a8ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #9c88ff;
        }
        h4 {
            font-size: 1.4rem;
            color: #4cd137;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        strong {
            color: #fbc531;
            font-weight: 700;
        }
        em {
            color: #9c88ff;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #e84118;
            padding-left: 20px;
            margin: 2em;
            font-style: italic;
            color: #bdc3c7;
            background: rgba(232, 65, 24, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #fbc531;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(251, 197, 49, 0.7);
        }
        .my-logo:hover {
            color: #e84118;
            text-shadow: 0 0 15px rgba(232, 65, 24, 0.9);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: #00a8ff;
            color: #0a0e17;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #bdc3c7;
        }
        .breadcrumb a:hover {
            color: #fbc531;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fbc531;
            cursor: pointer;
        }
        main {
            background-color: #141a29;
            padding: 40px 0;
            min-height: 80vh;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        aside {
            background: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #00a8ff;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 6px 0 0 6px;
            background: #1e272e;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #e84118;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #c23616;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #34495e;
        }
        .link-list a {
            display: block;
            padding: 8px;
            border-radius: 4px;
            background: rgba(52, 73, 94, 0.3);
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: #2c3e50;
            padding-left: 15px;
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 39, 46, 0.9);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #7f8c8d;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbc531;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: #1a1a2e;
            border: 1px solid #34495e;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(to right, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #0097e6, #0080cc);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            transition: transform 0.5s ease;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            font-style: italic;
            color: #95a5a6;
            margin-top: 10px;
            font-size: 0.9rem;
            text-align: center;
        }
        footer {
            background: #1a1a2e;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #fbc531;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(52, 73, 94, 0.5);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            transition: all 0.3s;
        }
        friend-link a {
            color: #bdc3c7;
        }
        friend-link:hover {
            background: #2c3e50;
            transform: translateY(-3px);
        }
        friend-link:hover a {
            color: #fbc531;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #95a5a6;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #34495e;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
            border-left: 5px solid #9b59b6;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 0;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav ul li a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #34495e;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .content-grid {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
            .footer-content {
                flex-direction: column;
            }
        }
