* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f1c40f;
            text-shadow: 2px 2px 8px rgba(241, 196, 15, 0.3);
            letter-spacing: 1px;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f1c40f;
        }
        .my-logo span {
            color: #e74c3c;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            color: #bdc3c7;
            display: block;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #ecf0f1;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            transition: background 0.3s, color 0.3s;
            display: block;
        }
        .nav-list li a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: #f1c40f;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px 10px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 14px;
            color: #555;
        }
        .breadcrumb a {
            color: #c0392b;
        }
        .breadcrumb a:hover {
            color: #a93226;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #999;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 16px;
            line-height: 1.2;
            border-left: 6px solid #c0392b;
            padding-left: 20px;
        }
        h1 i {
            color: #f1c40f;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #c0392b;
        }
        h2 i {
            color: #c0392b;
            margin-right: 10px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin: 30px 0 12px;
        }
        h3 i {
            color: #f39c12;
            margin-right: 8px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #34495e;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #2c3e50;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a2e;
            color: #f1c40f;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #1a1a2e;
            color: #ecf0f1;
            padding: 10px 20px;
            font-size: 14px;
            font-style: italic;
        }
        .content-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .content-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8e1, #fff3cd);
            border-left: 6px solid #f1c40f;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #c0392b;
        }
        .list-decorated {
            list-style: none;
            padding: 0;
        }
        .list-decorated li {
            padding: 10px 0 10px 32px;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
            font-size: 16px;
        }
        .list-decorated li::before {
            content: "🎯";
            position: absolute;
            left: 0;
            top: 10px;
            font-size: 18px;
        }
        .search-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s;
            min-width: 200px;
        }
        .search-form input:focus {
            border-color: #c0392b;
            outline: none;
        }
        .search-form button {
            padding: 14px 30px;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .user-feedback {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .feedback-card h3 {
            margin-top: 0;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c0392b;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 14px 24px;
            background: #1a1a2e;
            color: #f1c40f;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .feedback-card button:hover {
            background: #c0392b;
            color: #fff;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #f1c40f;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
            transform: scale(1.1);
        }
        .star-rating label i {
            font-size: 28px;
        }
        .links-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
        }
        .links-section ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 30px;
            list-style: none;
            padding: 0;
        }
        @media (max-width:640px) {
            .links-section ul {
                grid-template-columns: 1fr;
            }
        }
        .links-section ul li a {
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            background: #f8f9fa;
            transition: background 0.3s, color 0.3s;
            font-weight: 500;
        }
        .links-section ul li a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #ecf0f1;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0 20px;
            text-align: center;
        }
        friend-link a {
            color: #f1c40f;
            margin: 0 12px;
            font-weight: 500;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        footer {
            background: #0f0f1a;
            color: #bdc3c7;
            padding: 30px 0;
            text-align: center;
            border-top: 4px solid #c0392b;
        }
        footer p {
            color: #bdc3c7;
            margin-bottom: 6px;
            font-size: 14px;
        }
        footer a {
            color: #f1c40f;
        }
        footer a:hover {
            color: #e74c3c;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 15px 0;
                border-radius: 0 0 12px 12px;
                margin-top: 12px;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                font-size: 16px;
            }
            header .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 26px;
                padding-left: 14px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            .content-card {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .featured-image img {
                border-radius: 8px;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo small {
                font-size: 12px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 19px;
            }
            h3 {
                font-size: 16px;
            }
            .feedback-card {
                padding: 20px;
            }
            .star-rating label i {
                font-size: 22px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #c0392b;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            border: none;
            z-index: 999;
        }
        .scroll-top:hover {
            background: #a93226;
            transform: translateY(-4px);
        }
        @media (max-width:480px) {
            .scroll-top {
                width: 40px;
                height: 40px;
                font-size: 18px;
                bottom: 16px;
                right: 16px;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .text-accent {
            color: #c0392b;
        }
        .text-gold {
            color: #f1c40f;
        }
        .bold {
            font-weight: 700;
        }
        .section-icon {
            margin-right: 8px;
        }
        .inline-list {
            display: inline;
            list-style: none;
            padding: 0;
        }
        .inline-list li {
            display: inline;
            margin: 0 4px;
        }
        .inline-list li::after {
            content: ", ";
        }
        .inline-list li:last-child::after {
            content: "";
        }
