        * {
            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: #333;
            background: linear-gradient(135deg, #0f1b3d 0%, #1a1a2e 100%);
            background-attachment: fixed;
            color: #f0f0f0;
            overflow-x: hidden;
        }
        a {
            color: #FFCC00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #FFEE88;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: rgba(15, 27, 61, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #FFCC00;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            color: #FFCC00;
            text-shadow: 0 0 10px #FFCC00, 2px 2px 0 #000;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #FF3333;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #FFCC00;
            color: #0f1b3d;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFCC00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background: rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #FFCC00;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 204, 0, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            color: #FFCC00;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2rem;
            color: #4DABF7;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #FFCC00;
        }
        h3 {
            font-size: 1.6rem;
            color: #69DB7C;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #FFA94D;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #FFCC00;
            font-weight: bold;
            margin-bottom: 2em;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.2), transparent);
            padding: 15px;
            border-left: 5px solid #FFCC00;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .figure {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .figure img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .figure img:hover {
            transform: scale(1.02);
        }
        .figure figcaption {
            font-style: italic;
            margin-top: 10px;
            color: #aaa;
            font-size: 0.95rem;
        }
        .internal-link-list {
            background: rgba(77, 171, 247, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-link-list h3 {
            color: #4DABF7;
            margin-top: 0;
        }
        .internal-link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            list-style: none;
        }
        .internal-link-list li {
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
        }
        .internal-link-list a {
            display: block;
            padding: 8px;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #FFCC00;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .search-widget form {
            display: flex;
        }
        .search-widget input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 5px 0 0 5px;
        }
        .search-widget button {
            background: #FFCC00;
            color: #0f1b3d;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-widget button:hover {
            background: #FFEE88;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: #FFCC00;
        }
        .rating-form button {
            background: #4DABF7;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            width: 100%;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #69DB7C;
        }
        .comments-widget .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .comment-author {
            font-weight: bold;
            color: #FFCC00;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #aaa;
            margin-left: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 10px;
            resize: vertical;
            min-height: 100px;
        }
        .comment-form button {
            background: #69DB7C;
            color: #000;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #FFCC00;
        }
        .site-footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 2px solid #FFCC00;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            color: #FFCC00;
            margin-bottom: 15px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,204,0,0.1);
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid rgba(255,204,0,0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(15, 27, 61, 0.98);
                flex-direction: column;
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255,204,0,0.2);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .sidebar {
                padding: 25px;
            }
        }
