* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0fcc45;
            --accent-light: #4dff88;
            --text: #e6e6e6;
            --text-muted: #b0b0b0;
            --card-bg: rgba(30, 30, 46, 0.8);
            --border: #2a2a3e;
            --shadow: rgba(0, 0, 0, 0.5);
            --max-width: 1200px;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo a:hover {
            opacity: 0.9;
        }
        .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(15, 204, 69, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 10px 15px var(--shadow);
            border-top: 1px solid var(--border);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 5px 0 0 5px;
            background-color: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: var(--accent-light);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
            line-height: 1.2;
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 3rem;
            font-style: italic;
        }
        h2 {
            font-size: 2.5rem;
            margin: 3rem 0 1.5rem;
            color: var(--accent);
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: var(--accent-light);
        }
        h4 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #fff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(15, 204, 69, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--accent);
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            display: block;
            border-radius: 15px;
            border: 3px solid var(--accent);
            box-shadow: 0 10px 20px var(--shadow);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .stat-card {
            background-color: var(--secondary);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px var(--shadow);
        }
        .stat-card i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .stat-card h3 {
            margin: 1rem 0;
            font-size: 1.8rem;
        }
        .interaction-section {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 3rem;
            margin: 3rem 0;
            border: 1px solid var(--border);
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0 2rem;
        }
        .star {
            font-size: 2rem;
            color: var(--border);
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid var(--border);
            background-color: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--accent);
            color: var(--primary);
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: var(--accent-light);
        }
        .site-footer {
            background-color: var(--secondary);
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--accent);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .footer-links h3, .friend-links h3 {
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }
        .footer-links ul, .friend-links ul {
            list-style: none;
        }
        .footer-links li, .friend-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: var(--card-bg);
            border-radius: 5px;
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
        }
        .bold {
            font-weight: bold;
            color: #fff;
        }
        .last-updated {
            background-color: rgba(15, 204, 69, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 2rem 0;
            text-align: center;
            font-weight: bold;
        }
