        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #ccc;
        }
        blockquote {
            border-left: 4px solid #ffcc00;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(255,204,0,0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        header {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            gap: 30px;
        }
        nav a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(255,204,0,0.1);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(40,40,60,0.8);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, #2a2a4a 0%, #0c0c0c 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffcc00" opacity="0.03"/>');
            background-size: cover;
        }
        .hero h1 {
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
            animation: fadeInUp 1s ease 0.3s both;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            animation: fadeInUp 1s ease 0.6s both;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.95);
            color: #333;
        }
        .search-btn {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #000;
            border: none;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ffdb4d, #ffad33);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        article {
            background: rgba(30,30,45,0.8);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-image {
            margin: 2rem auto;
            text-align: center;
        }
        .article-image img {
            max-height: 500px;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .caption {
            margin-top: 10px;
            color: #aaa;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.1), transparent);
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 4px solid #ffcc00;
        }
        aside {
            background: rgba(30,30,45,0.8);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: transform 0.3s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input,
        .rating-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .rating-form button {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #000;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover {
            background: linear-gradient(90deg, #ffdb4d, #ffad33);
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #333;
        }
        .comment {
            background: rgba(40,40,60,0.6);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .comment-author {
            color: #ffcc00;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .comment-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        .comment-form {
            display: grid;
            gap: 15px;
            margin-top: 30px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #555;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .comment-form button {
            background: linear-gradient(90deg, #00ccff, #0099cc);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #33d6ff, #00aadd);
        }
        .footer-links {
            background: rgba(20,20,35,0.95);
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,204,0,0.1);
            margin: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255,204,0,0.3);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,204,0,0.2);
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        footer {
            background: #0a0a15;
            padding: 40px 20px;
            text-align: center;
            color: #aaa;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .social-icons {
            margin: 20px 0;
            font-size: 1.8rem;
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        .social-icons a {
            color: #ccc;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            color: #ffcc00;
            transform: scale(1.3);
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.95rem;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(20,20,30,0.98);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 15px;
            }
            article, aside {
                padding: 25px;
            }
            .content-wrapper {
                padding: 20px 15px;
            }
            .hero {
                padding: 60px 15px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-btn {
                border-radius: 0;
                padding: 15px;
            }
            .web-link {
                display: block;
                margin: 10px 0;
            }
        }
