        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0c1d;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            color: #ffcc00;
            font-weight: 600;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1630, #0f0c1d);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #332e5c;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffcc00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #ffcc00, #ff6699);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease-in-out infinite alternate;
        }
        @keyframes logoGlow {
            from { text-shadow: 0 0 5px #ffcc00; }
            to { text-shadow: 0 0 20px #ff6699, 0 0 10px #ffcc00; }
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #b8b5d6;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .nav-desktop a:hover {
            color: #ffcc00;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1630;
            padding: 20px;
            border-top: 2px solid #332e5c;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b8b5d6;
            text-decoration: none;
            padding: 15px 10px;
            border-bottom: 1px solid #332e5c;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background-color: #262247;
            color: #ffcc00;
        }
        .breadcrumb {
            background-color: #161228;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2548;
        }
        .breadcrumb a {
            color: #8a85b3;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(22, 18, 40, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #3a3466;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .sidebar {
                order: -1;
            }
        }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid #ff6699;
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
        }
        h2 {
            font-size: 2.5rem;
            color: #b8b5d6;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3466;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a29fd3;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #d0cdee;
            font-style: italic;
            border-left: 5px solid #ffcc00;
            padding-left: 20px;
            margin-bottom: 40px;
        }
        .widget {
            background: rgba(26, 22, 48, 0.9);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #3a3466;
        }
        .widget h3 {
            color: #ffcc00;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 15px;
            background-color: #0f0c1d;
            border: 2px solid #3a3466;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .search-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #ffcc00, #ff9966);
            border: none;
            border-radius: 8px;
            color: #0f0c1d;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        .rating-widget .stars i {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffcc00;
        }
        .rating-form textarea {
            width: 100%;
            padding: 15px;
            background-color: #0f0c1d;
            border: 2px solid #3a3466;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            min-height: 120px;
            margin-bottom: 15px;
            resize: vertical;
        }
        .rating-form input[type="text"],
        .rating-form input[type="email"] {
            width: 100%;
            padding: 12px;
            background-color: #0f0c1d;
            border: 2px solid #3a3466;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .rating-form .btn-submit {
            padding: 15px 30px;
            background: linear-gradient(45deg, #6699ff, #9966ff);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .rating-form .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(102, 153, 255, 0.4);
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #ffcc00;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
        }
        .content-links {
            background-color: #161228;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #ff6699;
        }
        .content-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .content-links li a {
            color: #8a85b3;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border-radius: 6px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .content-links li a i {
            color: #ffcc00;
        }
        .content-links li a:hover {
            background-color: #262247;
            color: #ffcc00;
            border-color: #ffcc00;
            transform: translateX(5px);
        }
        .site-footer {
            background: #0a0818;
            padding: 50px 20px 30px;
            border-top: 3px solid #332e5c;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links a {
            color: #b8b5d6;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background-color: #161228;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 4px solid #6699ff;
        }
        friend-link a {
            color: #a29fd3;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #332e5c;
            color: #8a85b3;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 25px;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
