        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1923;
            color: #ece8e1;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 70, 85, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #ff4655;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-left: 4px solid #ff4655; padding-left: 15px; margin-top: 2.5rem;}
        h3 { font-size: 1.8rem; margin-top: 2rem;}
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b8b8b8;
            font-weight: 300;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,70,85,0.1) 0%, rgba(255,70,85,0.05) 100%);
            border-left: 4px solid #ff4655;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .main-header {
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid #2a3a4a;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff4655, #0f1923);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: #ff4655;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff4655;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff4655;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8b9aaa;
        }
        .breadcrumb a { color: #8b9aaa; }
        .breadcrumb a:hover { color: #ff4655; }
        .breadcrumb span { margin: 0 8px; }
        .search-bar {
            margin: 30px 0;
            background: #1a2634;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #2a3a4a;
            background: #0f1923;
            color: #ece8e1;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: #ff4655;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e03c4a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 38, 52, 0.6);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .featured-image {
            margin: 25px 0 35px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(255,70,85,0.2);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8b9aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            background: rgba(26, 38, 52, 0.6);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3a4a;
        }
        .rating-widget, .comment-widget {
            background: #1a2634;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #2a3a4a;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            background: #0f1923;
            border: 1px solid #2a3a4a;
            border-radius: 5px;
            color: #ece8e1;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 12px;
            background: #ff4655;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #e03c4a;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background: #1a2634;
            border-radius: 15px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            padding: 12px;
            background: #0f1923;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255,70,85,0.3);
        }
        .main-footer {
            background: #0a111a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid #2a3a4a;
            margin-top: 50px;
        }
        .copyright {
            color: #8b9aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .bold { font-weight: 700; color: #ffcc00; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 25, 35, 0.98);
                padding: 20px;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                position: relative;
            }
        }
