:root {
            --primary-color: #0078d7;
            --secondary-color: #107c10;
            --dark-bg: #0f0f0f;
            --medium-bg: #1a1a1a;
            --light-bg: #2d2d2d;
            --text-primary: #f2f2f2;
            --text-secondary: #cccccc;
            --accent-gold: #ffb900;
            --accent-silver: #c0c0c0;
            --spartan-green: #00cc66;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.8) 100%);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-color), var(--spartan-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(0, 120, 215, 0.3);
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(0, 204, 102, 0.5);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--medium-bg);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .search-section {
            background-color: var(--medium-bg);
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 8px;
            text-align: center;
        }
        .search-section h2 {
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50px 0 0 50px;
            background-color: var(--light-bg);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #005a9e;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .article-content {
            background-color: var(--medium-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-bg);
        }
        .article-meta span {
            margin-right: 20px;
        }
        .article-meta i {
            margin-right: 5px;
            color: var(--accent-gold);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--spartan-green);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--primary-color);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--accent-silver);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-secondary);
            font-weight: 300;
            margin-bottom: 30px;
            padding-left: 20px;
            border-left: 4px solid var(--primary-color);
        }
        .highlight {
            background-color: rgba(0, 120, 215, 0.1);
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .infobox {
            background-color: var(--light-bg);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            float: right;
            width: 350px;
            margin-left: 30px;
        }
        .infobox h3 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--light-bg);
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .sidebar {
            background-color: var(--medium-bg);
            padding: 25px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-bg);
        }
        .quick-links {
            list-style: none;
            margin-bottom: 30px;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px 15px;
            background-color: var(--light-bg);
            border-radius: 5px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateX(5px);
        }
        .user-interaction {
            background-color: var(--medium-bg);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 50px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .rating-box, .comment-box {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: var(--accent-silver);
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover, .stars i.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .form-input, .form-textarea {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid var(--light-bg);
            background-color: var(--dark-bg);
            color: var(--text-primary);
            font-family: var(--font-main);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .form-submit:hover {
            background-color: #0e6b0e;
        }
        .site-footer {
            background-color: #000;
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary-color);
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(0,120,215,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-bg);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .infobox {
                float: none;
                width: 100%;
                margin-left: 0;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--dark-bg);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 2px solid var(--primary-color);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
            }
            .main-nav.active ul {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 25px;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 10px;
            }
        }
        .emoji-bullet::before {
            content: '⚡ ';
            color: var(--accent-gold);
        }
        .important {
            background: linear-gradient(90deg, transparent, rgba(255, 185, 0, 0.1), transparent);
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            font-weight: bold;
            border-left: 4px solid var(--accent-gold);
        }
        .tip {
            background-color: rgba(0, 204, 102, 0.1);
            border-left: 4px solid var(--spartan-green);
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .tip::before {
            content: '💡 ';
            font-size: 1.2rem;
            margin-right: 10px;
        }
