        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: #f5f5f5;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffeb3b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9800;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        header {
            background: rgba(0, 0, 20, 0.95);
            padding: 20px 0;
            border-bottom: 3px solid #ffeb3b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 0 2px 5px rgba(255,235,59,0.5);
        }
        .logo a {
            color: inherit;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeb3b;
        }
        nav {
            display: flex;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 235, 59, 0.1);
        }
        nav a:hover {
            background: rgba(255, 235, 59, 0.3);
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #bbb;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #ffeb3b;
        }
        main {
            flex: 1;
            padding: 40px 0;
            background: rgba(255, 255, 255, 0.05);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(0, 10, 30, 0.7);
            border-radius: 15px;
            border-left: 5px solid #ffeb3b;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffeb3b;
            margin-bottom: 15px;
            text-shadow: 0 3px 10px rgba(255,235,59,0.3);
        }
        .article-meta {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .content-section {
            margin-bottom: 50px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4fc3f7;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d6a7;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.15);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffeb3b;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .featured-image {
            text-align: center;
            margin: 30px 0;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #ccc;
            margin-top: 10px;
        }
        .search-box, .comments-section, .rating-section {
            background: rgba(0, 20, 40, 0.8);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #00bcd4;
        }
        .search-box h3, .comments-section h3, .rating-section h3 {
            color: #00bcd4;
        }
        form {
            display: grid;
            gap: 15px;
            margin-top: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #4a148c;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #222;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #ff9800, #ffeb3b);
            color: #1a237e;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 152, 0, 0.5);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffeb3b;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(0, 10, 30, 0.9);
            border-radius: 15px;
        }
        .web-link {
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255, 235, 59, 0.3);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 235, 59, 0.1);
            transform: scale(1.03);
        }
        footer {
            background: rgba(0, 0, 10, 0.98);
            padding: 30px 0;
            text-align: center;
            border-top: 3px solid #ffeb3b;
            margin-top: 40px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 20px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
