        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #0a2463;
            --accent-gold: #ffb347;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f1f1f1;
            --card-bg: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-blue), #1a3a8f);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, var(--accent-gold), #ff9a1f);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 179, 71, 0.3);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .highlight {
            background-color: rgba(255, 179, 71, 0.15);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-gold);
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            padding: 15px 0;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .breadcrumb span {
            color: #888;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3c8a 100%);
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        .search-section h2 {
            color: white;
            border: none;
            padding: 0;
            margin-bottom: 25px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--accent-gold);
            color: var(--text-dark);
            border: none;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #ff9a1f;
        }
        .article-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        .article-content {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f9f9f9;
        }
        .code-list-section {
            background: linear-gradient(to bottom right, #f0f8ff, #fffaf0);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 2px dashed var(--accent-gold);
        }
        .code-item {
            background-color: white;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .code-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .code-text {
            font-family: 'Courier New', monospace;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-blue);
            background-color: #f1f5fd;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .code-reward {
            color: #27ae60;
            font-weight: 600;
        }
        .code-status {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 10px;
        }
        .status-working {
            background-color: #d5f4e6;
            color: #27ae60;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            min-width: 600px;
        }
        th {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px;
            text-align: left;
        }
        td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .popular-links a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: #555;
        }
        .popular-links a:hover {
            color: var(--primary-blue);
            padding-left: 10px;
        }
        .social-share {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-icon:hover {
            transform: translateY(-5px);
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .discord { background-color: #7289da; }
        .rating-section, .comments-section {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment-item {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 20px;
        }
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        .comment-content h4 {
            margin-bottom: 5px;
        }
        .comment-meta {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .long-tail-links {
            background-color: #f1f5fd;
            padding: 40px 0;
            margin-top: 60px;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--text-dark);
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-blue);
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 25px;
            border-left: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #ccc;
        }
        .footer-col ul li a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .article-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-content { padding: 25px; }
            .rating-section, .comments-section { padding: 25px; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-btn { border-radius: 0; padding: 15px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .code-item { flex-direction: column; align-items: flex-start; gap: 15px; }
            .comment-item { flex-direction: column; gap: 15px; }
        }
