        * { 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.8;
            color: #e8e6e3;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3c 100%);
            min-height: 100vh;
            padding-bottom: 2rem;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease; }
        a:hover { color: #a5d8ff; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1e3a5f;
            box-shadow: 0 4px 20px rgba(0, 10, 30, 0.7);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover { text-decoration: none; transform: scale(1.02); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c9d1d9;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 1.1rem;
        }
        .main-nav a:hover {
            background-color: #1e3a5f;
            color: #ffffff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto 2rem;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #8b949e;
        }
        .breadcrumb a { color: #8b949e; }
        .breadcrumb a:hover { color: #ffd700; }
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(22, 37, 56, 0.8);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 15, 40, 0.6);
            border: 1px solid #2a4466;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
            border-bottom: 3px solid #1e3a5f;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #4dabf7;
            margin: 3rem 0 1.5rem;
            padding-top: 1rem;
            border-top: 2px dashed #2a4466;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #c9d1d9;
            margin: 2rem 0 1rem;
        }
        p, li {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #c9d1d9;
            background: rgba(30, 58, 95, 0.3);
            padding: 1.5rem;
            border-left: 5px solid #ffaa00;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        strong { color: #ffaa00; font-weight: 700; }
        em { color: #a5d8ff; font-style: italic; }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 58, 95, 0.7), rgba(10, 25, 47, 0.7));
            border: 1px solid #4dabf7;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: inset 0 0 15px rgba(77, 171, 247, 0.1);
        }
        ul, ol {
            padding-left: 2.5rem;
            margin-bottom: 1.5rem;
        }
        li { margin-bottom: 0.75rem; }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            border: 3px solid #2a4466;
            margin: 2.5rem auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8b949e;
            margin-top: 0.5rem;
            font-size: 1rem;
        }
        .sidebar {
            background: rgba(22, 37, 56, 0.8);
            border-radius: 16px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid #2a4466;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #ffaa00;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a4466;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background: rgba(10, 25, 47, 0.7);
            color: #e8e6e3;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.9rem;
            background: linear-gradient(90deg, #1e3a5f, #4dabf7);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #4dabf7, #1e3a5f);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .comment-form textarea,
        .comment-form input {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #2a4466;
            background: rgba(10, 25, 47, 0.7);
            color: #e8e6e3;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button,
        .comment-form button {
            padding: 0.9rem;
            background: linear-gradient(90deg, #ffaa00, #ffd700);
            color: #0c1a2d;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .stars {
            color: #ffd700;
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }
        .site-footer {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding: 3rem 2rem;
            border-top: 2px solid #1e3a5f;
            text-align: center;
            color: #8b949e;
            background: rgba(10, 25, 47, 0.8);
            border-radius: 12px 12px 0 0;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            margin: 0 1rem;
            color: #a5d8ff;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .hamburger { display: block; }
            .content-wrapper { padding: 0 1rem; }
            article { padding: 2rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .breadcrumb { padding: 0 1rem; }
        }
