* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #fdf8f4;
            color: #2d2d2d;
            line-height: 1.75;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -1px;
            background: linear-gradient(to right, #ff6b35, #ffc83d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 0;
        }
        .my-logo span {
            font-size: 0.4em;
            display: block;
            letter-spacing: 3px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
        }
        .nav-menu li a:hover {
            background: rgba(255, 107, 53, 0.3);
            color: #ffc83d;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .breadcrumb {
            background: #f8e9e3;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e8d5cc;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        .breadcrumb a {
            color: #c14e2a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #999;
        }
        .breadcrumb .current {
            color: #666;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23f39c12"/><circle cx="120" cy="120" r="40" fill="%23e74c3c"/><circle cx="280" cy="80" r="25" fill="%23349d8f"/><circle cx="450" cy="150" r="30" fill="%232ecc71"/><circle cx="620" cy="90" r="20" fill="%23f1c40f"/><circle cx="780" cy="130" r="35" fill="%239b59b6"/><circle cx="950" cy="100" r="28" fill="%23e67e22"/><circle cx="1100" cy="140" r="22" fill="%231abc9c"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            text-align: center;
            color: white;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 900;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            color: #f0f0f0;
        }
        .hero .search-box {
            margin-top: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .hero .search-box input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .hero .search-box button {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border: none;
            color: white;
            padding: 0 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            border-radius: 0 50px 50px 0;
        }
        .hero .search-box button:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
        }
        .main-wrapper {
            display: flex;
            gap: 40px;
            padding: 40px 0;
        }
        .content-area {
            flex: 1;
            min-width: 0;
        }
        .sidebar {
            width: 320px;
            flex-shrink: 0;
        }
        .content-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 30px;
        }
        .content-card h2 {
            font-size: 1.8rem;
            color: #1a1a2e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6b35;
            display: inline-block;
        }
        .content-card h2:first-child {
            margin-top: 0;
        }
        .content-card h3 {
            font-size: 1.4rem;
            color: #0f3460;
            margin: 30px 0 15px;
        }
        .content-card h4 {
            font-size: 1.1rem;
            color: #e74c3c;
            margin: 20px 0 10px;
        }
        .content-card p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .content-card ul, .content-card ol {
            margin: 0 0 16px 25px;
        }
        .content-card li {
            margin-bottom: 8px;
        }
        .content-card .lead {
            font-size: 1.15rem;
            color: #444;
            font-weight: 500;
            line-height: 1.7;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8e1, #ffe3cc);
            padding: 20px 25px;
            border-radius: 12px;
            margin: 20px 0;
            border-left: 5px solid #ff6b35;
        }
        .stat-box {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .stat-item {
            background: #faf0e9;
            padding: 20px;
            border-radius: 12px;
            flex: 1;
            min-width: 140px;
            text-align: center;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #e74c3c;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
        }
        figure {
            margin: 30px 0;
            text-align: center;
        }
        figure img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        figure figcaption {
            font-size: 0.85rem;
            color: #888;
            margin-top: 8px;
            font-style: italic;
        }
        .faq-item {
            background: #fafafa;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #eee;
        }
        .faq-item h4 {
            margin-top: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item p {
            margin-top: 10px;
        }
        .sidebar .widget {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 25px;
        }
        .sidebar .widget h3 {
            font-size: 1.1rem;
            color: #1a1a2e;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff6b35;
            display: inline-block;
        }
        .sidebar .widget ul {
            list-style: none;
        }
        .sidebar .widget ul li {
            margin-bottom: 8px;
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
        }
        .sidebar .widget ul li a {
            color: #0f3460;
            text-decoration: none;
            transition: 0.3s;
            display: block;
        }
        .sidebar .widget ul li a:hover {
            color: #e74c3c;
            padding-left: 5px;
        }
        .sidebar .widget .icon {
            color: #e74c3c;
            margin-right: 5px;
        }
        .rating-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 20px 0;
            padding: 20px;
            background: #faf0e9;
            border-radius: 12px;
        }
        .stars {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.2s;
        }
        .stars .fa-star.active {
            color: #f1c40f;
        }
        .rating-value {
            font-weight: 700;
            font-size: 1.2rem;
        }
        .format-btn {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 600;
        }
        .format-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .comment-section {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-top: 30px;
        }
        .comment-section h3 {
            font-size: 1.3rem;
            color: #1a1a2e;
            margin-bottom: 20px;
        }
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-section input,
        .comment-section textarea {
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 1rem;
            transition: 0.3s;
            background: #fafafa;
        }
        .comment-section input:focus,
        .comment-section textarea:focus {
            outline: none;
            border-color: #ff6b35;
            background: #fff;
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-section button {
            align-self: flex-start;
        }
        .site-footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #ccc;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #2c3e50;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #aaa;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-col ul li a:hover {
            color: #ff6b35;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border-left: 4px solid #ff6b35;
        }
        friend-link a {
            color: #ffb347;
            text-decoration: none;
            margin-right: 10px;
        }
        friend-link a:hover {
            color: #ff6b35;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            font-size: 0.85rem;
            color: #888;
        }
        .copyright a {
            color: #ffb347;
            text-decoration: none;
        }
        @media (max-width: 900px) {
            .main-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .header-wrapper {
                padding: 0 10px;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                margin-top: 10px;
                padding: 15px;
                border-radius: 10px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 20px;
            }
            .content-card h2 {
                font-size: 1.4rem;
            }
            .content-card h3 {
                font-size: 1.2rem;
            }
            .stat-box {
                flex-direction: column;
            }
            .hero .search-box {
                flex-direction: column;
                border-radius: 20px;
                background: transparent;
                gap: 10px;
            }
            .hero .search-box input {
                border-radius: 30px;
                background: white;
            }
            .hero .search-box button {
                border-radius: 30px;
                padding: 12px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 15px;
            }
            .content-card {
                padding: 15px;
            }
        }
