        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a2a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #80c1ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2b4a 0%, #0c1424 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccd6f6;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2b4a;
            padding: 1rem;
            border-top: 1px solid #2a3c5a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8892b0;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .hero {
            background: linear-gradient(rgba(15, 26, 42, 0.9), rgba(15, 26, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #ffcc00;
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccd6f6;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #ffcc00;
            border-radius: 8px 0 0 8px;
            background: #1a2b4a;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 1rem 1.5rem;
            background: #ffcc00;
            color: #0f1a2a;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff9900;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #1a2b4a;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-body h2 {
            color: #4da6ff;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }
        .article-body h3 {
            color: #80c1ff;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        .article-body h4 {
            color: #a6d2ff;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-body em {
            color: #ccd6f6;
            font-style: italic;
        }
        .article-body ul, .article-body ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .inline-img {
            float: right;
            margin: 0 0 1rem 2rem;
            max-width: 400px;
            border: 3px solid #ffcc00;
            border-radius: 10px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .update-time {
            background: #2a3c5a;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            font-style: italic;
            color: #8892b0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: #1a2b4a;
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid #ffcc00;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            background: #2a3c5a;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: #3a4c6a;
            transform: translateX(5px);
            text-decoration: none;
        }
        .comment-section, .rating-section {
            background: #1a2b4a;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        .comment-section h2, .rating-section h2 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            color: #ccc;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffcc00;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #2a3c5a;
            background: #0f1a2a;
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            padding: 1rem;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #0f1a2a;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        button[type="submit"]:hover {
            transform: scale(1.02);
        }
        .site-footer {
            background: #0c1424;
            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;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #1a2b4a;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3c5a;
            color: #8892b0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .main-nav ul { display: none; }
            .hamburger { display: block; }
            .article-body { padding: 1.5rem; }
            .inline-img {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
