        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #1a2332;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .logo i {
            font-size: 2.2rem;
            color: #6a11cb;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            color: #b0b0b0;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        nav.desktop-nav a:hover,
        nav.desktop-nav a.active {
            color: #6a11cb;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #6a11cb;
            transition: width 0.3s;
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #0f1525;
            padding: 20px;
            border-top: 1px solid #1a2332;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
        }
        .mobile-nav a:hover {
            background: rgba(106, 17, 203, 0.2);
        }
        .breadcrumb {
            background: #111827;
            padding: 15px 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #6a11cb;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, #1a2332 0%, #0a0e17 70%);
            padding: 80px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            background: linear-gradient(to right, #ff7e5f, #2575fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0b0b0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: rgba(15, 21, 37, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }
        main h2, main h3, main h4 {
            color: #fff;
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        main h2 {
            font-size: 2.2rem;
            border-left: 5px solid #6a11cb;
            padding-left: 15px;
        }
        main h3 {
            font-size: 1.8rem;
            color: #feb47b;
        }
        main h4 {
            font-size: 1.4rem;
            color: #6a11cb;
        }
        main p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .highlight {
            background: rgba(106, 17, 203, 0.1);
            border-left: 4px solid #6a11cb;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .content-link {
            color: #6a11cb;
            font-weight: bold;
            border-bottom: 1px dotted #6a11cb;
        }
        .content-link:hover {
            color: #ff7e5f;
            border-bottom: 1px solid #ff7e5f;
        }
        aside.sidebar {
            background: rgba(15, 21, 37, 0.7);
            border-radius: 15px;
            padding: 30px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #feb47b;
            padding-bottom: 10px;
            border-bottom: 2px solid #1a2332;
        }
        .search-box input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid #2d3748;
            background: #0f1525;
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 15px;
        }
        .link-list ul {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            transition: background 0.3s;
        }
        .link-list li:hover {
            background: rgba(106, 17, 203, 0.2);
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list i {
            color: #6a11cb;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .rating-widget .stars i {
            cursor: pointer;
        }
        .rating-widget form input,
        .rating-widget form textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: #0f1525;
            border: 1px solid #2d3748;
            border-radius: 8px;
            color: white;
        }
        .rating-widget form button,
        .comment-form button {
            width: 100%;
            margin-top: 10px;
        }
        footer {
            background: #070b14;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 1px solid #1a2332;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #b0b0b0;
        }
        .footer-links a:hover {
            color: #6a11cb;
        }
        friend-link {
            display: block;
            background: rgba(106, 17, 203, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }
        friend-link a {
            color: #6a11cb;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a2332;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            main article {
                padding: 25px;
            }
            .header-container {
                padding: 15px;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .content-wrapper {
                gap: 30px;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
