:root {
            --primary-dark: #0c1a25;
            --primary-accent: #c77d1e;
            --secondary-accent: #2a4d6d;
            --text-primary: #e8e6e3;
            --text-secondary: #b0ada8;
            --bg-card: #1a2835;
            --border-color: #2d3e4f;
            --success: #4caf50;
            --warning: #ff9800;
            --danger: #f44336;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e99b4d;
        }
        .site-header {
            background: linear-gradient(180deg, rgba(12,26,37,0.95) 0%, rgba(12,26,37,0.85) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-accent);
            padding: 0.8rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), #e99b4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-accent);
        }
        .breadcrumb {
            background-color: rgba(26, 40, 53, 0.8);
            padding: 0.8rem 2rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        .main-content {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-accent);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, var(--primary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--primary-accent);
            border-left: 4px solid var(--primary-accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        .highlight {
            background-color: rgba(199, 125, 30, 0.1);
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
        }
        em {
            color: var(--primary-accent);
            font-style: italic;
        }
        strong {
            color: var(--text-primary);
            font-weight: 700;
        }
        .content-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .content-image:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }
        li {
            margin-bottom: 0.5rem;
        }
        .last-updated {
            background-color: rgba(42, 77, 109, 0.3);
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .last-updated i {
            color: var(--warning);
            font-size: 1.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-accent);
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #e99b4d;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
        }
        .star {
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .score-form {
            display: none;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .score-form input, .score-form textarea {
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .score-form button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .score-form button:hover {
            background-color: #3a5d7f;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment-form {
            background-color: var(--bg-card);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .comment-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: rgba(255,255,255,0.08);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-accent), #e99b4d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment {
            background-color: rgba(26, 40, 53, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-accent);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-accent);
        }
        .site-footer {
            background-color: #0a141f;
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-top: 2px solid var(--primary-accent);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), #e99b4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(42, 77, 109, 0.3);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            border-color: var(--primary-accent);
            background-color: rgba(42, 77, 109, 0.5);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 0.8rem 1rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                gap: 0;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav a {
                padding: 0.8rem 0;
                border-bottom: 1px solid var(--border-color);
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 0 1rem;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget, .comment-form {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .tag {
            display: inline-block;
            background-color: rgba(199, 125, 30, 0.2);
            color: var(--primary-accent);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.85rem;
            margin: 0 0.3rem 0.3rem 0;
            border: 1px solid rgba(199, 125, 30, 0.4);
        }
