        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            color: #f5f5f5;
            line-height: 1.7;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #4a9eff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74b9ff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #fdcb6e;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fdcb6e, #e17055);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #dfe6e9;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover {
            background: rgba(253, 203, 110, 0.15);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fdcb6e;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(12, 36, 97, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: #dfe6e9;
            font-size: 1.2rem;
            padding: 12px;
            border-radius: 5px;
            display: block;
            border-left: 4px solid #fdcb6e;
        }
        .breadcrumb {
            background: rgba(30, 55, 153, 0.7);
            padding: 12px 0;
            margin: 10px 0 30px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #fdcb6e;
        }
        main {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
            border: 1px solid rgba(253, 203, 110, 0.2);
        }
        article {
            max-width: 100%;
        }
        h1 {
            font-size: 2.8rem;
            color: #fdcb6e;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            border-bottom: 3px solid #e17055;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #74b9ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed rgba(116, 185, 255, 0.5);
        }
        h3 {
            font-size: 1.5rem;
            color: #81ecec;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #dfe6e9;
            background: rgba(30, 55, 153, 0.3);
            padding: 20px;
            border-left: 5px solid #fdcb6e;
            border-radius: 0 10px 10px 0;
            margin-bottom: 35px;
        }
        .highlight {
            background: rgba(253, 203, 110, 0.15);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(253, 203, 110, 0.3);
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            font-weight: 700;
            color: #fdcb6e;
        }
        .related-link {
            display: inline-block;
            background: rgba(116, 185, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px 10px 5px 0;
            border: 1px solid rgba(116, 185, 255, 0.3);
        }
        .image-container {
            margin: 30px auto;
            max-width: 800px;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 3px solid #fdcb6e;
        }
        .caption {
            font-style: italic;
            color: #b2bec3;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .search-section {
            background: rgba(30, 55, 153, 0.4);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            background: #1e3a8a;
            color: white;
        }
        .search-button {
            background: linear-gradient(90deg, #fdcb6e, #e17055);
            color: #0c2461;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #e17055, #fdcb6e);
            transform: scale(1.05);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 55, 153, 0.4);
            padding: 25px;
            border-radius: 10px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #fdcb6e;
            cursor: pointer;
        }
        .star:hover, .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 8px;
            background: #1e3a8a;
            color: white;
            border: 1px solid #74b9ff;
            resize: vertical;
            margin: 15px 0;
        }
        .form-button {
            background: #4a9eff;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .form-button:hover {
            background: #1e90ff;
        }
        footer {
            background: rgba(12, 36, 97, 0.95);
            padding: 40px 0 20px;
            border-top: 3px solid #fdcb6e;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #fdcb6e;
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 2px solid rgba(253, 203, 110, 0.3);
            padding-bottom: 8px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            color: #b2bec3;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
        }
        friend-link a:hover {
            color: #74b9ff;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            main { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .header-container { padding: 12px 0; }
            .logo { font-size: 1.8rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            main { padding: 20px; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 10px; }
            .search-button { border-radius: 8px; padding: 15px; }
            .interactive-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            .lead { font-size: 1.1rem; }
            .breadcrumb ol { font-size: 0.85rem; }
        }
