:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fb4;
            --accent-gold: #d4af37;
            --accent-red: #c13c3c;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-card: #151a28;
            --border-color: #2a3145;
            --transition: all 0.3s ease;
            --shadow: 0 8px 24px rgba(0, 10, 61, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        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(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 14, 23, 0.95), rgba(10, 14, 23, 0.85));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-red);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 500;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .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(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, rgba(26, 95, 180, 0.1), rgba(212, 175, 55, 0.05));
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--accent-gold);
        }
        .publish-date {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
        .author {
            color: var(--primary-blue);
            font-weight: 600;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .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: 2px solid var(--border-color);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--text-light);
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background-color: var(--bg-card);
            border-left: 4px solid var(--accent-gold);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .code-card {
            background: linear-gradient(145deg, #1a2235, #151a28);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }
        .code-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow);
        }
        .code-value {
            font-family: monospace;
            font-size: 1.4rem;
            color: var(--accent-gold);
            background-color: rgba(212, 175, 55, 0.1);
            padding: 10px;
            border-radius: 5px;
            margin: 15px 0;
            letter-spacing: 1px;
            border: 1px dashed var(--accent-gold);
        }
        .reward {
            color: #4cd964;
            font-weight: 600;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #144a94;
        }
        .rating-widget {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin: 25px 0;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
            padding: 14px;
            background-color: var(--accent-red);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #a53030;
        }
        .footer-links {
            background-color: var(--bg-card);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 6px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--border-color);
            background-color: rgba(255, 255, 255, 0.06);
        }
        footer {
            padding: 40px 0 20px;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 30px;
            }
            .code-list {
                grid-template-columns: 1fr;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
        }
