* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a2463, #3e1b6b);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffde59;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        .logo i {
            font-size: 2.8rem;
        }
        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        .search-bar form {
            display: flex;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            background: #ffde59;
            color: #0a2463;
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #ffcc00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background-color: #1c1c3c;
            margin-top: 20px;
            border-radius: 10px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            display: block;
            font-weight: 600;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background-color: #ffde59;
            color: #0a2463;
            border-radius: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ffde59;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        .content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #0a2463;
            font-size: 2.8rem;
            margin-bottom: 20px;
            border-bottom: 4px solid #ffde59;
            padding-bottom: 10px;
        }
        h2 {
            color: #3e1b6b;
            font-size: 2.2rem;
            margin: 30px 0 15px;
            padding-top: 10px;
        }
        h3 {
            color: #5a2d8c;
            font-size: 1.8rem;
            margin: 25px 0 10px;
        }
        h4 {
            color: #7b4caf;
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 20px;
            border-left: 5px solid #ffde59;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .links-list a {
            display: block;
            background: #f0f4ff;
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            color: #3e1b6b;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .links-list a:hover {
            background: #e0e8ff;
            border-color: #ffde59;
            transform: translateY(-3px);
        }
        .update-time {
            font-style: italic;
            color: #777;
            text-align: right;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #ccc;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #0a2463;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffde59;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .rating-form select, .comment-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: #0a2463;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #3e1b6b;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffde59;
        }
        footer {
            background: #1c1c3c;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffde59;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffde59;
        }
        friend-link {
            display: block;
            background: #2a2a5c;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
        }
        friend-link a {
            color: #ffde59;
            font-weight: bold;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-links {
                flex-direction: column;
                display: none;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .search-bar {
                max-width: 100%;
                margin: 10px 0;
                width: 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .content, .sidebar {
                padding: 20px;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
        }
