        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #FFD700;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            background: linear-gradient(90deg, #FFD700, #FF8C00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #FF6B6B;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4ECDC4;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        .header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #FFD700;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #FFD700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo span {
            color: #FF6B6B;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background: #FFD700;
            color: #000;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFD700;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 1024px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            padding: 2rem;
            z-index: 999;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .mobile-nav.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav .nav-link {
            display: block;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            padding: 1rem;
            border: 1px solid #FFD700;
            border-radius: 8px;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 20px;
        }
        .breadcrumb a {
            color: #FFD700;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .search-box {
            margin-bottom: 2rem;
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #FFD700;
        }
        .search-box h3 {
            margin-top: 0;
            color: #FFD700;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .search-input:focus {
            outline: none;
            border-color: #FFD700;
        }
        .search-btn {
            background: #FFD700;
            color: #000;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: #FF8C00;
            transform: translateY(-2px);
        }
        .rating-widget {
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 2px solid #4ECDC4;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #555;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star.active {
            color: #FFD700;
        }
        .comments-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
            border: 2px solid #FF6B6B;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #FFD700;
        }
        .submit-btn {
            background: #FF6B6B;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: #FF4757;
            transform: translateY(-2px);
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        .price-table th {
            background: #FFD700;
            color: #000;
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .price-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .price-table tr:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            border: 3px solid #FFD700;
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,215,0,0.2), rgba(255,107,107,0.2));
            padding: 1.5rem;
            border-left: 5px solid #FFD700;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .key-point {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(78, 205, 196, 0.1);
            border-radius: 10px;
        }
        .key-point i {
            color: #4ECDC4;
            font-size: 1.5rem;
            margin-top: 3px;
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }
        .internal-link {
            background: rgba(255, 215, 0, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            color: #FFD700;
            border: 1px solid #FFD700;
            transition: all 0.3s ease;
        }
        .internal-link:hover {
            background: #FFD700;
            color: #000;
            transform: translateY(-3px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 2px solid #FFD700;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 215, 0, 0.1);
        }
        .web-link a {
            color: #4ECDC4;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #FFD700;
            text-decoration: underline;
        }
        .footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #FFD700;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            text-align: center;
            color: #aaa;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #FFD700;
            font-weight: 700;
        }
        .note {
            background: rgba(255, 107, 107, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #FF6B6B;
            margin: 1.5rem 0;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-content {
                padding: 2rem;
            }
            .container {
                padding: 0 10px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
