        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1318;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2230 0%, #0f1318 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3441;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd43b, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ffc107, #e8590c);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #adb5bd;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd43b;
            background-color: rgba(255, 212, 59, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #adb5bd;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #868e96;
        }
        .breadcrumb a {
            color: #adb5bd;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero {
            background: radial-gradient(circle at top right, #2a3441 0%, transparent 70%), linear-gradient(135deg, #1a2230 0%, #0f1318 100%);
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 1px solid #2a3441;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #4dabf7, #da77f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ced4da;
        }
        .highlight {
            color: #ffd43b;
            font-weight: 700;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background-color: rgba(26, 34, 48, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #343a40;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            background-color: rgba(26, 34, 48, 0.7);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #343a40;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: #f1f3f5;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid #f76707;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #74c0fc;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #495057;
        }
        h3 {
            font-size: 1.7rem;
            color: #da77f2;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #dee2e6;
        }
        .lead {
            font-size: 1.25rem;
            color: #adb5bd;
            font-weight: 300;
        }
        .strong {
            font-weight: 700;
            color: #ffd43b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        blockquote {
            border-left: 4px solid #40c057;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #a5d8ff;
            background-color: rgba(64, 192, 87, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
            color: #dee2e6;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #495057;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            max-width: 900px;
        }
        .img-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.95rem;
            color: #868e96;
            padding: 0.8rem;
            background-color: #1a2230;
            font-style: italic;
        }
        .module {
            background: linear-gradient(145deg, #1c2532, #161d29);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid #343a40;
        }
        .module h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .module-icon {
            color: #ffd43b;
        }
        .search-module form,
        .comment-module form,
        .rating-module form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #adb5bd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem 1rem;
            background-color: #212529;
            border: 1px solid #495057;
            border-radius: 6px;
            color: #f8f9fa;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .btn {
            padding: 0.9rem 2rem;
            background: linear-gradient(90deg, #339af0, #228be6);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            align-self: flex-start;
        }
        .btn:hover {
            background: linear-gradient(90deg, #228be6, #1c7ed6);
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #495057;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd43b;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h4 {
            color: #74c0fc;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #495057;
        }
        .quick-links ul {
            list-style: none;
            margin-left: 0;
        }
        .quick-links li {
            margin-bottom: 0.85rem;
            padding-left: 0;
        }
        .quick-links a {
            display: block;
            padding: 0.75rem 1rem;
            background-color: #212529;
            border-radius: 6px;
            border-left: 4px solid #339af0;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: #2b3035;
            border-left-color: #ffd43b;
            transform: translateX(5px);
        }
        .meta-info {
            background-color: rgba(33, 150, 243, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .meta-info p {
            margin-bottom: 0.7rem;
            color: #adb5bd;
        }
        .meta-info span {
            color: #ffd43b;
            font-weight: 600;
        }
        .footer-links-section {
            background-color: #1a2230;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid #2a3441;
            border-bottom: 1px solid #2a3441;
        }
        .footer-links-section h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: #adb5bd;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #212529;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #343a40;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: #2b3035;
            border-color: #339af0;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e9ecef;
            font-weight: 600;
        }
        .site-footer {
            background-color: #0f1318;
            padding: 3rem 0 2rem;
            text-align: center;
            color: #868e96;
            font-size: 0.95rem;
        }
        .footer-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .footer-nav a {
            color: #adb5bd;
        }
        .footer-nav a:hover {
            color: #ffd43b;
        }
        .copyright {
            border-top: 1px solid #2a3441;
            padding-top: 2rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a2230;
                padding: 1rem;
                border-top: 1px solid #2a3441;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-content,
            .sidebar {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .web-links-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
