        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0e17;
            color: #a7a9be;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #fffffe;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 100%);
            padding: 1rem 0;
            border-bottom: 1px solid #2e2f3e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff8906, #e53170);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none !important;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 137, 6, 0.1);
            text-decoration: none;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #ff8906;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #2e2f3e;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #2e2f3e;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a8b9e;
        }
        .breadcrumb a {
            color: #8a8b9e;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #16161e;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #16161e;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget h3 {
            color: #fffffe;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff8906;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem;
            border: 1px solid #2e2f3e;
            background-color: #0f0e17;
            color: #fffffe;
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            background-color: #ff8906;
            color: #0f0e17;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-form button:hover {
            background-color: #e53170;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #2e2f3e;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ff8906;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.75rem;
            border: 1px solid #2e2f3e;
            background-color: #0f0e17;
            color: #fffffe;
            border-radius: 4px;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #ff8906;
            color: #0f0e17;
            border: none;
            padding: 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #e53170;
        }
        h1, h2, h3, h4 {
            color: #fffffe;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-bottom: 3px solid #ff8906;
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: #ff8906;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #e53170;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #fffffe;
            font-weight: 500;
            background: rgba(255, 137, 6, 0.05);
            padding: 1.5rem;
            border-left: 4px solid #ff8906;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: rgba(255, 137, 6, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #e53170;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .site-footer {
            background-color: #0a0a12;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #2e2f3e;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ff8906;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 137, 6, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 0.25rem;
            border: 1px solid transparent;
        }
        friend-link:hover {
            border-color: #ff8906;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2e2f3e;
            color: #8a8b9e;
            font-size: 0.9rem;
        }
        .last-updated {
            font-style: italic;
            color: #8a8b9e;
            margin-bottom: 2rem;
            display: block;
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #8a8b9e;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            background-color: #ff8906;
            color: #0f0e17;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background-color: #e53170;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .text-center {
            text-align: center;
        }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
