        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f5f5f5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(15, 32, 87, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #ffeb3b;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 235, 59, 0.7);
        }
        .logo a:hover {
            color: #ffffff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 15px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav a:hover {
            background: rgba(255, 235, 59, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeb3b;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(0, 0, 0, 0.2);
            margin-bottom: 25px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffeb3b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 42, 110, 0.8);
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border-left: 6px solid #ffeb3b;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffeb3b;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #4fc3f7;
            border-bottom: 2px dashed #4fc3f7;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #a5d6a7;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.15);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffeb3b;
            margin: 25px 0;
        }
        .important {
            font-weight: 700;
            color: #ffeb3b;
        }
        .inline-link {
            font-weight: 700;
            background: rgba(79, 195, 247, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .sidebar {
            background: rgba(15, 32, 87, 0.8);
            padding: 25px;
            border-radius: 20px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #ffeb3b;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #4fc3f7;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: #4fc3f7;
            color: #0c2461;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffeb3b;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .related-links li:hover {
            transform: translateX(5px);
            background: rgba(79, 195, 247, 0.2);
        }
        .interactive-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #4fc3f7;
        }
        .rating-widget, .comment-widget {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffeb3b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #4fc3f7;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button, .rating-widget button {
            background: linear-gradient(to right, #4fc3f7, #2196f3);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover, .rating-widget button:hover {
            background: linear-gradient(to right, #ffeb3b, #fbc02d);
            transform: scale(1.05);
        }
        .site-footer {
            background: rgba(10, 20, 60, 0.95);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #ffeb3b;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            color: #ffeb3b;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid #4fc3f7;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: rgba(15, 32, 87, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.5s ease;
                padding: 30px;
                overflow-y: auto;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                text-align: center;
                border-radius: 10px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
        }
