        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c1a2a 0%, #1a3a5a 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc80;
            text-shadow: 0 0 8px rgba(255, 204, 128, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(13, 25, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffa000;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffa000, #ffcc80);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            padding: 5px 0;
        }
        .my-logo:hover {
            animation: glow 1s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px #ffa000, 0 0 20px #ffa000; }
            to { text-shadow: 0 0 15px #ffcc80, 0 0 25px #ffcc80; }
        }
        .breadcrumb {
            padding: 12px 0;
            background: rgba(30, 50, 70, 0.6);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 5px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #4fc3f7;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li {
            margin-left: 25px;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-list a:hover,
        .nav-list a:focus {
            border-bottom-color: #ffa000;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: #ffcc80;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .search-form {
            display: flex;
            margin-left: 25px;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #4fc3f7;
        }
        .search-input {
            padding: 10px 15px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: #fff;
            min-width: 220px;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background: #4fc3f7;
            color: #0c1a2a;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ffcc80;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 35, 55, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #2a4a6a;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc80;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid #ffa000;
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 5px solid #ffa000;
        }
        h3 {
            font-size: 1.6rem;
            color: #80deea;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #a5d6a7;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffcc80;
            font-weight: 500;
            background: rgba(255, 160, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ffa000;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,160,0,0.2), transparent);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #4fc3f7;
        }
        .sidebar {
            background: rgba(20, 35, 55, 0.8);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #2a4a6a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            color: #ffcc80;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffa000;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            color: #80deea;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #4fc3f7;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, #ffa000, #ffcc80);
            color: #0c1a2a;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 160, 0, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            border: 3px solid #ffa000;
            box-shadow: 0 8px 25px rgba(0,0,0,0.7);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .related-links {
            background: rgba(30, 50, 80, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .related-links h3 {
            color: #ffcc80;
        }
        .related-links ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
        }
        @media (max-width: 768px) {
            .related-links ul {
                column-count: 1;
            }
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li::before {
            content: "➜";
            color: #4fc3f7;
            position: absolute;
            left: 0;
        }
        .site-footer {
            margin-top: 60px;
            background: rgba(13, 25, 40, 0.95);
            border-top: 2px solid #ffa000;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        .footer-title {
            color: #ffcc80;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 4px solid #4fc3f7;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(79, 195, 247, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            width: 100%;
            padding-top: 20px;
            border-top: 1px solid #2a4a6a;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .main-nav.active .nav-list {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 25, 40, 0.98);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-list li {
                margin: 10px 0;
            }
            .search-form {
                margin: 20px 0 0 0;
                width: 100%;
                order: 3;
            }
            .search-input {
                min-width: auto;
                flex-grow: 1;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
