        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0c0c14;
            color: #e9e2d0;
            line-height: 1.8;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, #1a1a2e 0%, transparent 20%), radial-gradient(circle at 80% 80%, #16213e 0%, transparent 20%);
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f7ef8a;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 1px solid #2a2a3e;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, #d4af37, #a67c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(20, 20, 30, 0.8);
            font-size: 0.95rem;
            border-bottom: 1px solid #2a2a3e;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(12, 12, 20, 0.9), rgba(12, 12, 20, 0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-bottom: 3px solid #d4af37;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #f7ef8a;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1.1rem;
            backdrop-filter: blur(5px);
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            background: linear-gradient(90deg, #d4af37, #a67c00);
            color: #0c0c14;
            border: none;
            padding: 0 35px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #f7ef8a, #d4af37);
            padding: 0 40px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        .main-content {
            background: rgba(20, 20, 30, 0.6);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a2a3e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .main-content h2, .main-content h3, .main-content h4 {
            color: #d4af37;
            margin-top: 2.5em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        .main-content h2 {
            font-size: 2.3rem;
            border-bottom: 2px solid #3a3a4e;
            padding-bottom: 15px;
        }
        .main-content h3 {
            font-size: 1.8rem;
        }
        .main-content h4 {
            font-size: 1.4rem;
            color: #f7ef8a;
        }
        .main-content p {
            margin-bottom: 1.8em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .main-content strong {
            color: #f7ef8a;
            font-weight: 700;
        }
        .main-content em {
            color: #aaa;
            font-style: italic;
        }
        .content-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            border: 2px solid #3a3a4e;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s;
        }
        .content-img:hover {
            transform: scale(1.01);
        }
        .info-box {
            background: rgba(30, 30, 45, 0.7);
            border-left: 5px solid #d4af37;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            list-style: none;
            padding: 20px;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #3a3a4e;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 20, 30, 0.6);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a2a3e;
        }
        .sidebar-widget h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3a4e;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 10px 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #ffd700;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #3a3a4e;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
        }
        .form-textarea {
            min-height: 120px;
        }
        .form-btn {
            background: linear-gradient(90deg, #2a2a3e, #3a3a4e);
            color: #d4af37;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .form-btn:hover {
            background: linear-gradient(90deg, #3a3a4e, #4a4a5e);
            color: #f7ef8a;
        }
        .update-time {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            margin-top: 10px;
        }
        .site-footer {
            background-color: #0a0a12;
            border-top: 1px solid #2a2a3e;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
            background: rgba(30, 30, 45, 0.5);
            border-radius: 10px;
            margin: 30px 0;
        }
        .friend-link {
            background: rgba(40, 40, 60, 0.7);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid #3a3a4e;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a2a3e;
            color: #777;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 18, 0.98);
                padding: 20px;
                border-top: 1px solid #2a2a3e;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .main-content {
                padding: 25px;
            }
            .main-content h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 40px 15px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            .main-content {
                padding: 20px 15px;
            }
        }
