* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #1a1f2e;
            --accent-gold: #d4af37;
            --accent-red: #c41e3a;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --card-bg: #222738;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-dark);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-red);
        }
        .search-box {
            display: flex;
            background: var(--card-bg);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #444;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 12px 20px;
            color: var(--text-light);
            width: 300px;
            outline: none;
        }
        .search-box button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent-red);
            color: white;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        nav {
            background-color: rgba(10, 14, 23, 0.95);
            padding: 10px 0;
            border-top: 1px solid #333;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 30px;
        }
        .nav-links a {
            padding: 10px 5px;
            font-weight: 600;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: var(--text-light);
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--accent-gold);
        }
        .article-content em {
            color: var(--text-gray);
        }
        .highlight-box {
            background: var(--card-bg);
            border-left: 5px solid var(--accent-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 2px solid var(--accent-gold);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tip-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #444;
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
        }
        .tip-card h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #444;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-text {
            margin: 10px 0;
        }
        .rate-btn {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            margin-top: 10px;
            width: 100%;
        }
        .rate-btn:hover {
            background: var(--accent-red);
            color: white;
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid var(--accent-gold);
        }
        .comments-section h2 {
            margin-bottom: 30px;
        }
        .comment-form {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-gold);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--text-light);
            outline: none;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent-gold);
        }
        .submit-btn {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: var(--accent-red);
            color: white;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .comment {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-gold);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .comment-author {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .web-links {
            background: var(--secondary-dark);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        footer {
            background-color: #090c14;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .search-box input {
                width: 200px;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary-dark);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }
            .nav-active {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            .search-box {
                order: 3;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
