        * {
            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: #f7f7f7;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffdd44;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight { color: #ffcc00; font-weight: bold; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #ffcc00;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ffdd44);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
            border: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #ffcc00;
            background: rgba(255, 204, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 36, 97, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid #ffcc00;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(255,255,255,0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a { margin: 0 5px; }
        .breadcrumb span { color: #aaa; }
        .hero {
            background: radial-gradient(circle at center, #1e3799 0%, #0c2461 70%);
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid #ffcc00;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 0 #000;
            background: linear-gradient(to right, #ffcc00, #ffdd44);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        main {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }
        article h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffcc00;
            color: #ffdd44;
        }
        article h3 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: #ffccaa;
        }
        article h4 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #aaddff;
        }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        article b {
            color: #ffcc00;
        }
        .img-float-right {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 50%;
        }
        @media (max-width: 768px) {
            .img-float-right { float: none; margin: 20px auto; display: block; max-width: 100%; }
        }
        .info-box {
            background: linear-gradient(145deg, rgba(255,204,0,0.15), rgba(30,55,153,0.3));
            border-left: 5px solid #ffcc00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            height: fit-content;
            backdrop-filter: blur(10px);
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        .search-form input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ffcc00;
            border-radius: 30px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 15px;
            padding: 15px;
            background: linear-gradient(to right, #ffcc00, #ffaa00);
            border: none;
            border-radius: 30px;
            color: #0c2461;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .rating-widget .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffdd44;
            text-shadow: 0 0 10px gold;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid #ffcc00;
            border-radius: 15px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            margin-top: 15px;
            padding: 15px;
            background: linear-gradient(to right, #1e3799, #0c2461);
            border: 2px solid #ffcc00;
            border-radius: 30px;
            color: #ffcc00;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #ffcc00, #ffaa00);
            color: #0c2461;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed rgba(255,255,255,0.2);
        }
        .link-list a {
            display: block;
            padding: 10px 15px;
            background: rgba(255,204,0,0.1);
            border-radius: 10px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: rgba(255,204,0,0.25);
            padding-left: 25px;
        }
        footer {
            background: #0a1a4a;
            border-top: 5px solid #ffcc00;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            margin-bottom: 10px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,204,0,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed rgba(255,255,255,0.2);
        }
