* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0e0;
            line-height: 1.8;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #f0c90f;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px #f0c90f;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c18 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #f0c90f;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #f0c90f, #b32e2e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f0c90f;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(240, 201, 15, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0c90f;
            background: none;
            border: none;
        }
        .hero {
            background: radial-gradient(circle at center, #1e2a47 0%, #0a0a12 70%);
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid #2a3a5a;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(240, 201, 15, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 2rem;
            color: #cccccc;
        }
        .search-container {
            max-width: 700px;
            margin: 3rem auto;
            padding: 2rem;
            background-color: #151522;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #f0c90f;
            border-radius: 50px;
            background-color: #0a0a12;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-button {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #f0c90f, #d4a506);
            color: #0a0a12;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(240, 201, 15, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        .article-content {
            background-color: #11111f;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .sidebar {
            background-color: #151522;
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        h1, h2, h3, h4 {
            color: #f0c90f;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #b32e2e; padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.5rem; color: #cccccc; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(240, 201, 15, 0.1);
            border-left: 4px solid #f0c90f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #2a3a5a;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .link-list {
            background-color: #1a1a2e;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .link-list li {
            padding: 0.8rem;
            background-color: #0a0a12;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        .link-list li:hover {
            background-color: #1e2a47;
        }
        .interaction-section {
            background-color: #151522;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #444;
        }
        .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f0c90f;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #2a3a5a;
            background-color: #0a0a12;
            color: #fff;
            font-size: 1rem;
        }
        .submit-button {
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #b32e2e, #8a1c1c);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .submit-button:hover {
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0c0c18;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #f0c90f;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: #151522;
            border-radius: 10px;
        }
        .friend-links a {
            font-weight: bold;
            padding: 0.8rem 1.5rem;
            background-color: #1a1a2e;
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a5a;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a2e;
                padding: 1rem;
                border-top: 2px solid #f0c90f;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                justify-content: space-between;
                margin-top: 1rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
