* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-emerald: #2ecc71;
            --primary-yellow: #f1c40f;
            --primary-ruby: #e74c3c;
            --dark-bg: #1a1a2e;
            --card-bg: #16213e;
            --text-light: #ecf0f1;
            --text-muted: #bdc3c7;
            --border-color: #34495e;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-emerald);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), var(--card-bg));
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-yellow), var(--primary-emerald));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .logo span {
            color: var(--primary-ruby);
            -webkit-text-fill-color: var(--primary-ruby);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(46, 204, 113, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-yellow);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            flex-direction: column;
            padding: 2rem;
            gap: 1rem;
            display: none;
            z-index: 999;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-yellow);
        }
        .search-container {
            margin: 2rem 0;
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(to right, var(--primary-yellow), #e67e22);
            color: #2c3e50;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .hero-title {
            font-size: 3rem;
            margin: 2rem 0 1rem;
            color: var(--primary-yellow);
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            border: 5px solid var(--primary-emerald);
            box-shadow: var(--shadow);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .main-content h2 {
            color: var(--primary-emerald);
            border-left: 5px solid var(--primary-yellow);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
        }
        .main-content h3 {
            color: var(--primary-yellow);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background-color: rgba(241, 196, 15, 0.1);
            border-left: 5px solid var(--primary-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary-ruby);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-emerald);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--primary-yellow);
            margin: 0.5rem 0;
        }
        .sidebar {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar h3 {
            color: var(--primary-emerald);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .quick-nav ul {
            list-style: none;
        }
        .quick-nav li {
            margin-bottom: 0.8rem;
        }
        .quick-nav a {
            display: block;
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 6px;
        }
        .quick-nav a:hover {
            background-color: rgba(46, 204, 113, 0.2);
            text-decoration: none;
        }
        .user-interaction {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .rating-widget, .comment-widget {
            padding: 1.5rem;
            background-color: rgba(0,0,0,0.2);
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ccc;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: var(--primary-yellow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-emerald), #27ae60);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
        }
        .web-links-section {
            background-color: var(--card-bg);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-yellow);
            border-bottom: 3px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.03);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-ruby);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(241, 196, 15, 0.1);
            transform: translateX(5px);
        }
        .site-footer {
            background-color: #0f1525;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-yellow);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
