        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #e63946;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4d8, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #f8f9fa;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f8f9fa;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #141422;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #adb5bd;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #6c757d;
        }
        .search-module {
            background-color: #1e1e2d;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #495057;
            border-radius: 8px 0 0 8px;
            background-color: #2d3041;
            color: #f8f9fa;
            font-size: 1rem;
        }
        .search-button {
            padding: 0 1.8rem;
            background: linear-gradient(90deg, #e63946, #f72585);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }
        .search-button:hover {
            opacity: 0.9;
        }
        .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-body {
            background-color: #161625;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #e63946;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.1rem;
            color: #4cc9f0;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3a3a5d;
        }
        h3 {
            font-size: 1.7rem;
            color: #a5b4fc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #cdb4db;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #bde0fe;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1c1c3a, #252547);
            border-left: 5px solid #f72585;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-with-caption {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-with-caption img {
            border-radius: 10px;
            border: 2px solid #3a3a5d;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            margin: 0 auto;
        }
        .caption {
            font-style: italic;
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1e1e2d;
            padding: 1.5rem;
            border-radius: 10px;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #ffb703;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a3a5d;
        }
        .rating-stars {
            color: #ffd166;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars .star {
            cursor: pointer;
            margin-right: 5px;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #bde0fe;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #495057;
            background-color: #2d3041;
            color: #f8f9fa;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        .last-updated {
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #3a3a5d;
        }
        .site-footer {
            background-color: #0c0c16;
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 3px solid #3a3a5d;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e63946;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #a5b4fc;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3041;
            color: #6c757d;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a2e;
                padding: 1rem;
                border-top: 1px solid #3a3a5d;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border-bottom: 1px solid #2d3041;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-body { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 10px; }
            .search-button { border-radius: 8px; padding: 1rem; }
        }
