        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fb4;
            --primary-gold: #d4af37;
            --secondary-red: #c33c54;
            --secondary-purple: #8a2be2;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --bg-card: #1a1f2e;
            --border-color: #2a3348;
            --success: #2ecc71;
            --warning: #f39c12;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary-gold);
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary-gold), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--primary-blue);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-purple);
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0f1525 100%);
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-card);
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .nav-mobile a:hover {
            background-color: var(--primary-blue);
        }
        .breadcrumb {
            background-color: var(--bg-card);
            padding: 15px 0;
            margin-bottom: 30px;
            border-radius: 5px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--primary-gold);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-blue);
        }
        .featured-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #0a0e17, #1a1f2e);
            border-radius: 10px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .featured-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.3;
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0,0,0,0.7);
            padding: 10px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .content-section {
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border-left: 3px solid var(--primary-blue);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(26, 95, 180, 0.1), rgba(138, 43, 226, 0.1));
            border: 1px solid var(--border-color);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--primary-dark);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }
        sidebar {
            background-color: var(--bg-card);
            padding: 20px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            position: relative;
            margin-bottom: 20px;
        }
        .search-box input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.5rem;
            color: var(--primary-gold);
        }
        .star {
            cursor: pointer;
            transition: color 0.3s, transform 0.3s;
        }
        .star:hover {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-btn {
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s;
            width: 100%;
            margin-top: 10px;
        }
        .rating-btn:hover {
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-family: inherit;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 100px;
        }
        .comment-form button {
            background: linear-gradient(90deg, var(--secondary-red), #e74c3c);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s;
            width: 100%;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background-color: var(--bg-card);
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: var(--primary-dark);
            padding: 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--text-primary);
            text-decoration: none;
            display: block;
            text-align: center;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, #0a0e17 0%, #050811 100%);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid var(--border-color);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: var(--text-primary);
            font-size: 1.3rem;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: var(--primary-gold);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .featured-image {
                height: 250px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-highlight {
            color: var(--primary-gold);
            font-weight: 700;
        }
        .text-important {
            color: var(--secondary-red);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
            margin: 30px 0;
        }
