        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e2a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #1a1f4d, #0a0e2a);
            padding: 1.2rem 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 3px 3px 0 #ff0000, 5px 5px 0 #000;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: #ffcc00;
            color: #0a0e2a;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            background-color: #15193a;
            padding: 1rem;
            margin-top: 0.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:last-of-type {
            color: #ffcc00;
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 12px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(10, 14, 42, 0.8);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px #000;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background: #fff;
            color: #333;
        }
        .search-box button {
            background: #ffcc00;
            color: #0a0e2a;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffdd44;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #15193a;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .article-meta {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #2a2f5a;
        }
        h1 { font-size: 3rem; margin: 1.5rem 0; color: #ffcc00; }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; color: #4dabf7; padding-bottom: 0.5rem; border-bottom: 2px solid #2a2f5a; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: #a5d8ff; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: #ccc; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #2a2f5a;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .sidebar {
            background: #15193a;
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a2f5a;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li:before {
            content: '▶';
            color: #ffcc00;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .rating-section, .comment-section {
            background: #15193a;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #2a2f5a;
            background: #0a0e2a;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: #ffcc00;
            color: #0a0e2a;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #ffdd44;
        }
        .site-footer {
            background: #0a0c1f;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #ffcc00;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: #15193a;
            border-radius: 6px;
            text-align: center;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2f5a;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .main-nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1f4d;
                padding: 1rem;
                border-top: 2px solid #ffcc00;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 { font-size: 2.5rem; }
            .header-content { flex-wrap: wrap; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            article, .sidebar { padding: 1.5rem; }
        }
