* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0a0f;
            color: #e8e0d4;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1520, #0f0d13);
            border-bottom: 2px solid #2a1f30;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5a623, #ff6b35, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 166, 35, 0.25);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #b8a9c4;
            background: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5a623;
            color: #f5a623;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-toggle:hover {
            background: #f5a623;
            color: #0b0a0f;
        }
        .nav-menu {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #cfc6d6;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: rgba(245, 166, 35, 0.12);
            color: #f5a623;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: rgba(245, 166, 35, 0.18);
            color: #f5a623;
        }
        .breadcrumb {
            background: #121016;
            padding: 12px 0;
            border-bottom: 1px solid #1e1a24;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a5f77;
        }
        .breadcrumb a {
            color: #b8a9c4;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 600;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1e1528, #0b0a0f 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.1rem;
            color: #b8a9c4;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #6a5f77;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .search-section {
            background: #121016;
            padding: 28px 0;
            border-top: 1px solid #1e1a24;
            border-bottom: 1px solid #1e1a24;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a1f30;
            background: #0f0d13;
            color: #e8e0d4;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            color: #0b0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 50px 0;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f5a623;
            margin-top: 50px;
            margin-bottom: 18px;
            border-left: 5px solid #ff6b35;
            padding-left: 18px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8d4b0;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #cfb89c;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d6cee0;
        }
        .main-content strong {
            color: #f5a623;
        }
        .main-content .highlight-box {
            background: #16131c;
            border-left: 5px solid #f5a623;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box p {
            margin-bottom: 0;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 22px 24px;
            color: #d6cee0;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .img-wrapper {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #121016;
            padding: 12px;
            border: 1px solid #2a1f30;
        }
        .main-content .img-wrapper figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: #8a7f9a;
            font-style: italic;
        }
        .main-content .img-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar .card {
            background: #121016;
            border: 1px solid #2a1f30;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
        }
        .sidebar .card h3 {
            font-size: 1.2rem;
            color: #f5a623;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a1f30;
            padding-bottom: 10px;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card li {
            margin-bottom: 10px;
        }
        .sidebar .card li a {
            color: #cfc6d6;
            font-size: 0.95rem;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #1e1a24;
            transition: 0.3s;
        }
        .sidebar .card li a:hover {
            color: #f5a623;
            padding-left: 6px;
        }
        .rating-area {
            background: #121016;
            border: 1px solid #2a1f30;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0 30px;
        }
        .rating-area h3 {
            font-size: 1.4rem;
            color: #f5a623;
            margin-bottom: 18px;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #3a2f44;
            cursor: pointer;
            margin: 12px 0 18px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.3s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-area .score-form {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .rating-area .score-form button {
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            color: #0b0a0f;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }
        .rating-area .score-form button:hover {
            transform: scale(1.04);
        }
        .comment-section {
            background: #121016;
            border: 1px solid #2a1f30;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 30px 0 40px;
        }
        .comment-section h3 {
            font-size: 1.4rem;
            color: #f5a623;
            margin-bottom: 18px;
        }
        .comment-section textarea {
            width: 100%;
            min-height: 120px;
            padding: 16px 20px;
            border-radius: 12px;
            border: 2px solid #2a1f30;
            background: #0f0d13;
            color: #e8e0d4;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.08);
        }
        .comment-section .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section .comment-form .row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-section .comment-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 2px solid #2a1f30;
            background: #0f0d13;
            color: #e8e0d4;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }
        .comment-section .comment-form input:focus {
            border-color: #f5a623;
        }
        .comment-section .comment-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            color: #0b0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .comment-section .comment-form button:hover {
            transform: scale(1.04);
        }
        footer {
            background: #0d0b11;
            border-top: 2px solid #1e1a24;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #f5a623;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        footer ul {
            list-style: none;
        }
        footer ul li {
            margin-bottom: 8px;
        }
        footer ul li a {
            color: #b8a9c4;
            font-size: 0.9rem;
        }
        footer ul li a:hover {
            color: #f5a623;
        }
        friend-link {
            display: block;
            background: #121016;
            border: 1px solid #2a1f30;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0 24px;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-weight: 700;
            color: #f5a623;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 16px 4px 0;
            border-right: 1px solid #2a1f30;
            color: #cfc6d6;
            font-size: 0.95rem;
        }
        friend-link a:last-child {
            border-right: none;
        }
        friend-link a:hover {
            color: #f5a623;
        }
        .copyright {
            text-align: center;
            padding-top: 22px;
            border-top: 1px solid #1e1a24;
            font-size: 0.85rem;
            color: #6a5f77;
        }
        .copyright strong {
            color: #b8a9c4;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 10px;
                background: #16131c;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .rating-area,
            .comment-section {
                padding: 20px 18px;
            }
            .search-form input {
                min-width: 140px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb ol {
                font-size: 0.78rem;
            }
            friend-link a {
                display: block;
                border-right: none;
                padding: 6px 0;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
        }
