        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #38bdf8;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(96, 165, 250, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1e293b;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb span {
            color: #60a5fa;
        }
        .hero {
            text-align: center;
            background: radial-gradient(circle at top, #1e3a8a 0%, #0f172a 70%);
            padding: 80px 20px;
            border-bottom: 1px solid #334155;
        }
        .hero h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #60a5fa, #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #94a3b8;
        }
        .search-section {
            background-color: #1e293b;
            padding: 30px 0;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #60a5fa;
        }
        .search-button {
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        .content-area h2 {
            font-size: 2.5rem;
            color: #38bdf8;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3b82f6;
        }
        .content-area h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin: 40px 0 15px;
        }
        .content-area h4 {
            font-size: 1.4rem;
            color: #c4b5fd;
            margin: 30px 0 10px;
        }
        .content-area p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        .content-area strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .content-area em {
            color: #34d399;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e3a8a, #1e293b);
            border-left: 5px solid #60a5fa;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .content-area ul, .content-area ol {
            padding-left: 25px;
            margin-bottom: 1.5em;
        }
        .content-area li {
            margin-bottom: 10px;
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background-color: #1e293b;
            border-radius: 10px;
            justify-content: center;
        }
        .internal-links a {
            padding: 10px 20px;
            background-color: #334155;
            border-radius: 30px;
            font-weight: 600;
            white-space: nowrap;
        }
        .internal-links a:hover {
            background-color: #475569;
        }
        .article-image {
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .rating-section, .comments-section {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 15px;
            margin: 60px 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating .star {
            color: #475569;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #fbbf24;
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            padding: 15px 30px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(90deg, #10b981, #34d399);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            justify-self: start;
            transition: transform 0.3s ease;
        }
        .submit-button:hover {
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0d1423;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 1px solid #334155;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        friend-link {
            display: inline-block;
            padding: 8px 15px;
            background-color: #1e293b;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 15px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .search-form {
                flex-direction: column;
                padding: 0 15px;
            }
            .content-area h2 {
                font-size: 2rem;
            }
            .content-area h3 {
                font-size: 1.6rem;
            }
            .rating-section, .comments-section {
                padding: 25px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
