:root {
            --primary-dark: #1a472a;
            --primary: #2a623d;
            --accent: #ff7a00;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --bg-dark: #0f1419;
            --bg-card: #1a1f26;
            --border-color: #333;
            --danger: #c41e3a;
            --warning: #ffaa00;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-dim);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff9a42;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 20, 25, 0.95);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--danger);
        }
        .my-logo:hover {
            color: var(--warning);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: var(--bg-card);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--text-light);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1538481199705-c710c4e965fc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 3px solid var(--primary);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: var(--text-light);
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-light);
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), var(--warning));
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
            color: white;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        article h2, article h3, article h4 {
            color: var(--text-light);
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        article h2 {
            font-size: 2.2rem;
        }
        article h3 {
            font-size: 1.8rem;
        }
        article h4 {
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article strong {
            color: var(--warning);
            font-weight: 700;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            border-radius: 10px;
            border: 3px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .img-caption {
            font-style: italic;
            margin-top: 10px;
            color: var(--text-dim);
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(42,98,61,0.2), rgba(15,20,25,0.5));
            border-left: 5px solid var(--warning);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .internal-links {
            background-color: rgba(255,122,0,0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .internal-links li {
            padding: 10px;
            background-color: var(--bg-dark);
            border-radius: 6px;
            transition: transform 0.3s;
        }
        .internal-links li:hover {
            transform: translateX(5px);
            background-color: rgba(255,122,0,0.1);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-widget h3 {
            color: var(--text-light);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .search-box input {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 15px;
            padding: 15px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover, .stars i.active {
            color: var(--warning);
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 6px;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            color: var(--text-light);
        }
        .rating-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--warning);
            text-align: center;
            margin-top: 10px;
        }
        .comments-section {
            margin-top: 50px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            border-radius: 8px;
            min-height: 150px;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: var(--bg-dark);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            border-radius: 6px;
        }
        .comment-form button {
            padding: 15px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        .comment {
            background-color: rgba(255,255,255,0.03);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        .comment-author {
            color: var(--accent);
            font-weight: bold;
        }
        footer {
            background-color: #0a0e12;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background-color: var(--bg-card);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255,122,0,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-dark);
                padding: 20px;
                border-top: 2px solid var(--primary);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            article {
                padding: 25px;
            }
            .header-container, .container {
                padding: 0 15px;
            }
        }
