        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #ff6b00, #ff8c42);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
        }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255, 107, 0, 0.5); background: linear-gradient(90deg, #ff8c42, #ff6b00); }
        .section-spacing { padding: 60px 0; }
        .text-highlight { color: #ffcc00; font-weight: bold; }
        .bold { font-weight: 800; }
        .main-header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333355;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover { transform: none; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover { color: #ffcc00; border-bottom-color: #ffcc00; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 26, 0.98);
            padding: 20px;
            border-top: 1px solid #333355;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 15px 0; }
        .mobile-nav a { display: block; padding: 10px; color: #ccc; border-left: 3px solid transparent; }
        .mobile-nav a:hover { color: #ffcc00; border-left-color: #ffcc00; }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 50, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffcc00; }
        .breadcrumb span { color: #ffcc00; margin: 0 8px; }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
            border-bottom: 1px solid #333355;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .main-content {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #333366;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            color: #ffcc00;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444488;
            font-size: 2.2rem;
        }
        article h3 {
            color: #4dabf7;
            margin: 30px 0 15px;
            font-size: 1.7rem;
        }
        article p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
            color: #d0d0d0;
        }
        article blockquote {
            border-left: 5px solid #ff6b00;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #bbb;
            background: rgba(255, 107, 0, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 30px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #444488;
            max-width: 800px;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s;
        }
        .image-wrapper img:hover { transform: scale(1.03); }
        .image-caption {
            padding: 10px;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(30, 30, 50, 0.8);
        }
        .internal-link {
            background: rgba(77, 171, 247, 0.1);
            border-left: 4px solid #4dabf7;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #333366;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #444488;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 25px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: white;
            margin-bottom: 15px;
        }
        .search-form button { width: 100%; }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #ffcc00; }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: white;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: white;
            margin-bottom: 15px;
        }
        .longtail-links {
            background: rgba(10, 10, 26, 0.9);
            padding: 50px 0;
            border-top: 1px solid #333355;
            border-bottom: 1px solid #333355;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .links-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .web-link {
            background: rgba(30, 30, 50, 0.8);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #444466;
            transition: all 0.3s;
        }
        .web-link:hover { background: rgba(50, 50, 80, 0.9); transform: translateY(-5px); border-color: #ffcc00; }
        .web-link a { color: #ccc; font-weight: 600; }
        .main-footer {
            background: #0a0a1a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #333355;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #ffcc00; }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333355;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            article { padding: 25px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero p { font-size: 1.1rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
            .section-spacing { padding: 40px 0; }
        }
