:root {
            --primary: #1a0b2e;
            --secondary: #6c4b9a;
            --accent: #ff4757;
            --light: #f8f9fa;
            --dark: #121212;
            --gray: #6c757d;
            --success: #2ed573;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            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: #333;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            background-attachment: fixed;
            color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff6b81;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(26, 11, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff4757, #6c4b9a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #ff4757;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 25px;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background: var(--secondary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--light);
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a:hover {
            background: var(--secondary);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 5px 20px;
            display: flex;
            align-items: center;
            max-width: 400px;
            margin: 20px auto;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 15px;
            color: white;
            flex: 1;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--accent);
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ff6b81;
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .article h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }
        .meta {
            color: var(--gray);
            margin-bottom: 30px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .lead {
            font-size: 1.4rem;
            color: #ddd;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(108, 75, 154, 0.2);
            border-left: 5px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        h2, h3, h4 {
            color: white;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h2 {
            font-size: 2.2rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 71, 87, 0.2), rgba(108, 75, 154, 0.2));
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
            border-left: 5px solid var(--success);
        }
        .codes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .code-card {
            background: rgba(26, 11, 46, 0.8);
            border: 2px solid var(--secondary);
            border-radius: var(--radius);
            padding: 25px;
            text-align: center;
            transition: var(--transition);
        }
        .code-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(255, 71, 87, 0.3);
        }
        .code {
            font-family: monospace;
            font-size: 1.8rem;
            color: var(--success);
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: var(--radius);
            margin: 15px 0;
            letter-spacing: 2px;
        }
        .reward {
            color: #ffd700;
            font-weight: bold;
        }
        .image-container {
            margin: 40px 0;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 30px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            color: #ffd700;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            transform: scale(1.2);
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--secondary);
            border-radius: var(--radius);
            padding: 15px;
            color: white;
            margin: 15px 0;
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }
        .btn {
            background: linear-gradient(to right, var(--accent), var(--secondary));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 71, 87, 0.4);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        .site-footer {
            background: rgba(0, 0, 0, 0.8);
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid var(--secondary);
        }
        .copyright {
            color: #aaa;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article { padding: 25px; }
            .article h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .codes-grid { grid-template-columns: 1fr; }
            .footer-links { flex-direction: column; align-items: center; }
            .web-link { width: 100%; text-align: center; }
        }
