        * {
            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.7;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff4655 0%, #b91d2a 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 70, 85, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(255, 70, 85, 0.5);
            text-decoration: none;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #fff;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #ff4655, #ece8e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff4655;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .note {
            background-color: rgba(15, 25, 35, 0.8);
            border: 1px solid #2a3a4a;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        header {
            background-color: #0f1923;
            border-bottom: 1px solid #2a3a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #ece8e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #ece8e1;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        nav ul li a:hover {
            color: #ff4655;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8b9aaa;
        }
        .breadcrumb a {
            color: #8b9aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .hero {
            background: radial-gradient(circle at top right, #1a2b3c 0%, #0f1923 70%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,70,85,0.1) 0%, transparent 70%);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            margin-bottom: 25px;
            font-size: 3.8rem;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            color: #b8c0c8;
        }
        .search-section {
            background-color: #1a2b3c;
            padding: 40px 0;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 20px 30px;
            border: none;
            font-size: 1.1rem;
            background-color: #0f1923;
            color: #ece8e1;
        }
        .search-btn {
            background: linear-gradient(135deg, #ff4655 0%, #b91d2a 100%);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #ff5765 0%, #c92e3a 100%);
        }
        .article-content {
            background-color: #0f1923;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-top: 40px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #8b9aaa;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #2a3a4a;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        .featured-image img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8b9aaa;
            padding: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: #ff4655;
            font-weight: 700;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #2a3a4a;
        }
        .tag {
            background-color: #1a2b3c;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        .interactive-section {
            background-color: #1a2b3c;
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
        }
        .rating-system, .comment-system {
            margin-bottom: 50px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #2a3a4a;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 15px;
            background-color: #0f1923;
            border: 1px solid #2a3a4a;
            border-radius: 8px;
            color: #ece8e1;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .footer-links {
            background-color: #0f1923;
            padding: 60px 0 30px;
            border-top: 1px solid #2a3a4a;
        }
        .web-link {
            display: inline-block;
            background-color: #1a2b3c;
            padding: 12px 25px;
            margin: 0 15px 15px 0;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #2a3a4a;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ece8e1;
        }
        .web-link a:hover {
            color: #ff4655;
            text-decoration: none;
        }
        footer {
            background-color: #0a121c;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            color: #8b9aaa;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #2a3a4a;
            width: 100%;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin: 30px 0;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #1a2b3c;
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: #ff4655;
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            .hero h1 { font-size: 3.2rem; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #0f1923;
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #2a3a4a;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav ul.active { display: flex; }
            nav ul li {
                margin: 10px 0;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero { padding: 70px 0; }
            .hero h1 { font-size: 2.8rem; }
            .article-content { padding: 25px; }
            .interactive-section { padding: 25px; }
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-btn { border-radius: 0; padding: 18px; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            section { padding: 40px 0; }
            .hero h1 { font-size: 2.3rem; }
            .article-meta { flex-direction: column; gap: 10px; }
        }
