:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #c41e3a;
            --secondary-accent: #f0a500;
            --text-light: #f5f5f5;
            --text-gray: #b0b0b0;
            --bg-card: #222831;
            --border-color: #393e46;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }
        .header-inner {
            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, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary-accent);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 60px 0 40px;
            background: radial-gradient(circle at center, #2d3041 0%, var(--primary-dark) 70%);
            border-bottom: 1px solid var(--border-color);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.2;
        }
        .hero h1 span {
            color: var(--primary-accent);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #2d3041;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-box button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .search-box button:hover {
            background-color: #a3162a;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            background-color: var(--bg-card);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        h2, h3, h4 {
            color: var(--secondary-accent);
            margin-top: 2.5em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-accent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.8em;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            border: 3px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .info-box {
            background: linear-gradient(135deg, #2d3041, #252737);
            border-left: 5px solid var(--secondary-accent);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
        }
        ul, ol {
            padding-left: 2em;
            margin-bottom: 1.8em;
        }
        li {
            margin-bottom: 0.8em;
        }
        aside {
            position: sticky;
            top: 140px;
            align-self: start;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--primary-accent);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars i {
            color: #444;
            transition: color 0.2s;
        }
        .stars i.active {
            color: var(--secondary-accent);
        }
        .rating-widget input, .rating-widget textarea {
            padding: 12px 15px;
            background-color: #2d3041;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .rating-widget button:hover {
            background-color: #a3162a;
        }
        .link-list a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background-color: #2d3041;
            border-radius: 8px;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
        .link-list a:hover {
            border-left-color: var(--primary-accent);
            background-color: #35384e;
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .comment-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: #2d3041;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .comment-form button {
            background-color: var(--secondary-accent);
            color: var(--primary-dark);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .comment-form button:hover {
            background-color: #e09c00;
        }
        footer {
            background-color: #151522;
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.5rem;
        }
        friend-link {
            display: block;
            margin: 15px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .last-updated {
            background-color: var(--primary-accent);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            margin: 20px 0;
            font-weight: bold;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                border-top: 1px solid var(--border-color);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            article, .widget {
                padding: 25px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
