        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f72585;
            text-shadow: 0 0 8px rgba(247, 37, 133, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight {
            background: linear-gradient(90deg, #f72585, #4361ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: bold;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid #4361ee;
        }
        .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, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo a { color: inherit; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #4cc9f0; }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .nav-desktop a:hover {
            background: rgba(76, 201, 240, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(22, 33, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #4361ee;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #2a3a6a;
            font-size: 1.1rem;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(circle at center, #2a3a6a 0%, #1a1a2e 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b8b8d1;
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #2a3a6a;
        }
        .article-content h2, .article-content h3, .article-content h4 {
            margin-top: 40px;
            margin-bottom: 20px;
            color: #4cc9f0;
        }
        .article-content h2 {
            font-size: 2.5rem;
            border-left: 6px solid #f72585;
            padding-left: 20px;
        }
        .article-content h3 { font-size: 2rem; }
        .article-content h4 { font-size: 1.5rem; color: #b8b8d1; }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .article-content li { margin-bottom: 10px; }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .inline-link {
            border-bottom: 1px dashed #4cc9f0;
            font-weight: 600;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #2a3a6a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #f72585;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4361ee;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-input, .form-textarea, .form-select {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2a3a6a;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #4cc9f0;
            box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
        }
        .form-btn {
            background: linear-gradient(90deg, #f72585, #4361ee);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .form-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(247, 37, 133, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 15px 0;
        }
        .star-rating label {
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .star-rating input { display: none; }
        .site-footer {
            background: #0d1117;
            padding: 50px 0 20px;
            margin-top: 80px;
            border-top: 3px solid #4361ee;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            color: #4cc9f0;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        friend-link {
            display: block;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-left: 4px solid #f72585;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #2a3a6a;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .article-content { padding: 25px; }
            .article-content h2 { font-size: 2rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
        }
