        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #ff4655;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 70, 85, 0.3);
            margin-top: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            color: #4cc9f0;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #a9b7c6;
            font-weight: 300;
            text-align: center;
            max-width: 900px;
            margin: 1.5rem auto 2.5rem;
        }
        strong {
            color: #ffb347;
            font-weight: 700;
        }
        em {
            color: #72efdd;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4655;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 70, 85, 0.7);
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #fff;
            text-shadow: 0 0 25px rgba(255, 70, 85, 1);
        }
        .logo span {
            color: #4cc9f0;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: #a9b7c6;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: #ff4655;
            background: rgba(255, 70, 85, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ff4655;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #333;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile .nav-link {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #888;
            background: rgba(30, 30, 40, 0.7);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #4cc9f0;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #444;
        }
        .author {
            color: #72efdd;
        }
        .article-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 3px solid #333;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 0.5rem;
            background: rgba(0,0,0,0.3);
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(255,70,85,0.1) 0%, rgba(76,201,240,0.1) 100%);
            border-left: 5px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(40, 40, 50, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #555;
        }
        .data-table th {
            background: #ff4655;
            color: #fff;
            font-weight: 700;
        }
        .data-table tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid #333;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #4cc9f0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #444;
            border-radius: 5px 0 0 5px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: #ff4655;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #e63e4d;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-input, .rating-textarea {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .rating-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-submit {
            background: linear-gradient(90deg, #ff4655, #ff6b7a);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-submit:hover {
            transform: translateY(-3px);
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background: rgba(40, 40, 50, 0.5);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #4cc9f0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .comment-author {
            color: #72efdd;
            font-weight: bold;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(20, 20, 30, 0.8);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(255, 70, 85, 0.1);
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1rem;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.2);
            border-color: #ff4655;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #4cc9f0;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: #0a0a0a;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #ff4655;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-family: 'Impact', sans-serif;
            font-size: 2rem;
            color: #ff4655;
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #a9b7c6;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff4655;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff4655, transparent);
            margin: 2.5rem 0;
        }
