        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff3333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff3333, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
        }
        .my-logo:hover {
            animation: logo-pulse 0.5s ease-in-out;
        }
        @keyframes logo-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #b0b0ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover, .main-nav a.active {
            background: rgba(255, 51, 51, 0.2);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(30, 30, 60, 0.8);
            padding: 12px 20px;
            border-radius: 0 0 8px 8px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #80d8ff; }
        .breadcrumb span { color: #ccc; }
        .search-module {
            background: rgba(40, 40, 80, 0.7);
            padding: 25px;
            border-radius: 12px;
            margin: 30px auto;
            text-align: center;
            border: 2px solid #4a4aff;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: #1a1a3a;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #ff3333, #ff6600);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        .main-article {
            background: rgba(20, 20, 50, 0.8);
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333366;
        }
        .sidebar {
            background: rgba(25, 25, 55, 0.8);
            border-radius: 16px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid #ff3333;
            padding-bottom: 15px;
        }
        h2 {
            color: #4fc3f7;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4a4aff;
        }
        h3 {
            color: #80d8ff;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #a5d6ff;
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffcc99;
            font-weight: 500;
            background: rgba(255, 102, 0, 0.1);
            padding: 20px;
            border-left: 5px solid #ff6600;
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: bold;
            color: #ffcc00;
        }
        .note {
            background: rgba(79, 195, 247, 0.1);
            border-left: 4px solid #4fc3f7;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 25px;
        }
        li { margin-bottom: 10px; }
        .article-img {
            margin: 30px auto;
            border: 5px solid #333366;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            max-width: 800px;
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #aaaacc;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .rating-module, .comments-module {
            background: rgba(40, 40, 80, 0.7);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid #4a4aff;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #1a1a3a;
            color: #fff;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00c853, #64dd17);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            align-self: flex-start;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 221, 23, 0.4);
        }
        .sidebar h3 {
            color: #ff9966;
            font-size: 1.5rem;
            margin-top: 0;
        }
        .link-list {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dotted #444;
        }
        .link-list a {
            display: block;
            padding: 12px;
            background: rgba(60, 60, 100, 0.5);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: rgba(255, 51, 51, 0.3);
            transform: translateX(5px);
        }
        .update-time {
            background: rgba(255, 102, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        site-footer {
            background: rgba(10, 10, 40, 0.95);
            margin-top: 60px;
            padding: 40px 0;
            border-top: 3px solid #ff3333;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            color: #80d8ff;
            border-bottom: 1px dotted #444;
        }
        friend-link:last-child { border-bottom: none; }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaaacc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 40, 0.98);
                padding: 20px;
                border-top: 2px solid #ff3333;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .content-area { gap: 25px; }
            .main-article, .sidebar { padding: 25px; }
        }
