:root {
            --primary-dark: #1a472a;
            --primary-green: #2a623d;
            --accent-gold: #c19a53;
            --accent-red: #8b1a1a;
            --light-bg: #0f1f15;
            --text-light: #e8f5e9;
            --text-muted: #a7c6ad;
            --card-bg: #15271d;
            --border-color: #2a4a36;
            --shadow: 0 8px 24px rgba(0, 20, 5, 0.4);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            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: var(--text-light);
            background: linear-gradient(135deg, var(--light-bg) 0%, #0a1510 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 21, 16, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-green);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--accent-gold), #e8d68a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(15, 31, 21, 0.98);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            font-size: 1.1rem;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-container {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-green);
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.08);
        }
        .search-button {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: linear-gradient(135deg, var(--accent-gold), #b8860b);
        }
        main {
            padding: 30px 0;
        }
        article {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(193, 154, 83, 0.3);
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #4cd964;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--accent-gold);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--text-light);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #a7e6c1;
            padding: 20px;
            background: rgba(42, 98, 61, 0.2);
            border-radius: 10px;
            margin-bottom: 30px;
            border-left: 4px solid var(--accent-gold);
        }
        .highlight {
            background: rgba(193, 154, 83, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 2px solid var(--border-color);
            max-width: 800px;
        }
        .img-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .caption {
            font-size: 0.95rem;
            color: var(--text-muted);
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .comment-section,
        .rating-section {
            background: rgba(21, 39, 29, 0.8);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.08);
        }
        .btn-submit {
            background: linear-gradient(135deg, var(--accent-red), #6a0c0c);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: linear-gradient(135deg, #ff4500, #8b1a1a);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(139, 26, 26, 0.4);
        }
        .related-links {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .related-links h3 {
            margin-top: 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .links-grid a {
            display: block;
            padding: 12px 15px;
            background: rgba(42, 98, 61, 0.2);
            border-radius: 6px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .links-grid a:hover {
            background: rgba(193, 154, 83, 0.2);
            border-color: var(--accent-gold);
            transform: translateX(5px);
        }
        footer {
            background-color: #0a1510;
            border-top: 2px solid var(--primary-green);
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-weight: 600;
            margin-top: 20px;
            padding: 10px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 6px;
            display: inline-block;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container { padding: 12px 0; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 10px; }
            .search-button { border-radius: 8px; padding: 15px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.5rem; }
            .my-logo { font-size: 1.8rem; }
            .lead { font-size: 1.1rem; }
        }
