        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a2a;
            color: #e8e8e8;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00a8ff;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, #c8102e 0%, #860029 50%, #0a0a2a 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ffffff, #00a8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #fff;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            color: #ffcc00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #0a0a2a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-bottom: 1px solid #222;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #111144;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .hero {
            background: radial-gradient(ellipse at center, #1a1a4a 0%, #0a0a2a 100%);
            text-align: center;
            padding: 80px 0;
            border-bottom: 3px solid #c8102e;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #c8102e, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccccff;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #333366;
        }
        .search-box h3 {
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #444;
            border-radius: 5px 0 0 5px;
            background: #111133;
            color: white;
        }
        .search-form button {
            background: linear-gradient(90deg, #c8102e, #860029);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffcc00, #c8102e);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(10, 10, 42, 0.8);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #c8102e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article h2 {
            color: #ffcc00;
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333366;
        }
        article h3 {
            color: #00a8ff;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article h4 {
            color: #c8102e;
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-left: 4px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1a1a4a, #0a0a2a);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 3px solid #00a8ff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card .number {
            font-size: 3rem;
            font-weight: bold;
            color: #ffcc00;
            display: block;
        }
        aside {
            background: rgba(20, 20, 60, 0.8);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333366;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .related-links li:before {
            content: "▶";
            color: #c8102e;
            position: absolute;
            left: 0;
        }
        .user-interaction {
            margin-top: 60px;
            background: rgba(20, 20, 60, 0.8);
            padding: 30px;
            border-radius: 15px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .comment-form textarea, .comment-form input, .rating-form input, .rating-form select {
            padding: 12px;
            margin-bottom: 15px;
            background: #111133;
            border: 1px solid #333366;
            border-radius: 5px;
            color: white;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #444;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .submit-btn {
            background: linear-gradient(90deg, #c8102e, #860029);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffcc00, #c8102e);
        }
        footer {
            background: #05051a;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #c8102e;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            background: #111133;
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #333366;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: #1a1a4a;
            border-color: #ffcc00;
            transform: scale(1.02);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222255;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            color: #ffcc00;
            font-style: italic;
            margin-top: 20px;
            text-align: right;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            article, aside, .user-interaction {
                padding: 20px;
            }
            .hero {
                padding: 50px 0;
            }
            section {
                padding: 40px 0;
            }
        }
