        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #0c1a2d, #1a365d 100px, #f8f9fa 100px);
            background-repeat: no-repeat;
        }
        a { color: #3498db; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #1d6fa5; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 26, 45, 0.95);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { color: #ffed4e; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: #ffd700; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd700;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ced4da;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #3498db; }
        .breadcrumb span { color: #495057; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            color: #7b8a8b;
            font-size: 0.95rem;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .meta-info i { margin-right: 0.5rem; }
        h2 {
            color: #2c3e50;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
            font-size: 2rem;
        }
        h3 {
            color: #34495e;
            margin: 2rem 0 1rem 0;
            font-size: 1.6rem;
        }
        h4 {
            color: #2c3e50;
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.3rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #ffd700;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong { color: #d35400; }
        .deck-list {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .deck-list li { margin-left: 1.5rem; margin-bottom: 0.5rem; }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image img { width: 100%; }
        .image-caption {
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f8f9fa;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #2c3e50;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.7rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .btn:hover { background-color: #2980b9; }
        .btn-block { width: 100%; }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl; 
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffd700; }
        .site-footer {
            background-color: #1a365d;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #bdc3c7; }
        .footer-links a:hover { color: #ffd700; }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        friend-link a { color: #3498db; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(12, 26, 45, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            .main-nav li { width: 100%; text-align: center; }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .article-header h1 { font-size: 2.2rem; }
            .article-content { padding: 1.5rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
