        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff6b9d;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b9d, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255, 107, 157, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1a2e;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff6b9d, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .article-header .meta {
            font-size: 1.1rem;
            color: #aaa;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-main {
            background: rgba(26, 26, 46, 0.8);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .content-main h2 {
            font-size: 2.4rem;
            margin: 40px 0 20px;
            color: #ffcc00;
            border-left: 6px solid #ff6b9d;
            padding-left: 15px;
        }
        .content-main h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ff6b9d;
        }
        .content-main p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
        }
        .content-main emoji {
            font-size: 1.5rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .content-main strong {
            color: #ffcc00;
            font-weight: 800;
        }
        .content-main .highlight {
            background: rgba(255, 204, 0, 0.1);
            padding: 25px;
            border-radius: 12px;
            border-left: 6px solid #ffcc00;
            margin: 30px 0;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
            border: 4px solid #333;
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-container figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 1rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ff6b9d;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .widget input, .widget textarea, .widget select {
            padding: 14px;
            border-radius: 10px;
            border: 2px solid #333;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .widget input:focus, .widget textarea:focus, .widget select:focus {
            outline: none;
            border-color: #ff6b9d;
        }
        .widget button {
            padding: 14px;
            background: linear-gradient(135deg, #ff6b9d, #ff3366);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .widget button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 157, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .internal-links {
            background: rgba(26, 26, 46, 0.9);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 4px solid #ff6b9d;
            border-bottom: 4px solid #ffcc00;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #1a1a2e;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffcc00;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            background: #0a0a12;
            color: #aaa;
            font-size: 1rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .content-main {
                padding: 25px;
            }
            .content-main h2 {
                font-size: 2rem;
            }
            .content-main h3 {
                font-size: 1.6rem;
            }
            .widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
