* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1b2c 0%, #1a3a5f 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 27, 44, 0.95);
            padding: 1rem 0;
            border-bottom: 3px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            border: none;
            background: linear-gradient(90deg, #ffd700, #ffaa00);
            color: #0c1b2c;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffaa00, #ffd700);
            transform: scale(1.05);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #4da6ff;
            margin: 2.5rem 0 1.5rem;
            border-left: 5px solid #ffd700;
            padding-left: 1rem;
        }
        h3 {
            font-size: 2rem;
            color: #66ccff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #99ddff;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            color: #e6e6e6;
            text-align: justify;
        }
        .intro {
            font-size: 1.4rem;
            color: #ffd700;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            padding: 1.5rem;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            border-left: 5px solid #ffd700;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #ffaa00;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat {
            background: rgba(26, 58, 95, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(77, 166, 255, 0.3);
            transition: transform 0.3s ease;
        }
        .stat:hover {
            transform: translateY(-10px);
            border-color: #ffd700;
        }
        .stat i {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .stat h4 {
            color: #ffd700;
            margin-bottom: 0.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .content-link {
            color: #4da6ff;
            font-weight: 600;
            border-bottom: 1px dashed #4da6ff;
        }
        .content-link:hover {
            color: #ffd700;
            border-bottom: 1px solid #ffd700;
        }
        .rating-section, .comments-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 1px solid rgba(77, 166, 255, 0.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2.5rem;
            margin: 1rem 0;
        }
        .star-rating i {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffd700;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ffd700;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ffd700;
        }
        .submit-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #0066cc, #4da6ff);
            transform: scale(1.05);
        }
        .site-footer {
            background: #0a1522;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #ffd700;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 27, 44, 0.98);
                padding: 1rem;
                border-top: 1px solid #ffd700;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: 50px;
                margin-bottom: 0.5rem;
            }
        }
