        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e5c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ffcc00;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6699);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ff6699, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 40, 70, 0.8);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #4fc3f7;
            border-left: 5px solid #ffcc00;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #a5d6a7;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #ffcc80;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.2), transparent);
            padding: 1.5rem;
            border-left: 4px solid #ffcc00;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat {
            background: rgba(0, 40, 85, 0.7);
            padding: 1.5rem;
            text-align: center;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .stat:hover {
            transform: scale(1.05);
            background: rgba(0, 60, 120, 0.8);
        }
        .stat .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
        }
        aside {
            background: rgba(20, 30, 60, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffcc00;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4fc3f7;
        }
        .search-box input {
            width: 100%;
            padding: 0.8rem;
            border-radius: 30px;
            border: 2px solid #4fc3f7;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.8rem;
            background: linear-gradient(90deg, #4fc3f7, #2196f3);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #2196f3, #0d8bf2);
            transform: translateY(-3px);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: rgba(255,204,0,0.2);
            padding-left: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            margin: 1rem 0;
            color: #ffcc00;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #4fc3f7;
            color: white;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            margin-top: 1rem;
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, #ff9800, #ff5722);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #ff5722, #ff9800);
            transform: translateY(-3px);
        }
        footer {
            background: rgba(10, 20, 40, 0.95);
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 2px solid #ffcc00;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: all 0.3s;
            color: #4fc3f7;
        }
        friend-link:hover {
            background: rgba(255,204,0,0.2);
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .content-grid { gap: 1.5rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            nav ul { flex-direction: column; width: 100%; display: none; margin-top: 1rem; }
            nav.active ul { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 10px; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.6rem; }
            .stat .number { font-size: 2rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
