        * {
            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;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-primary { color: #ff4655; }
        .text-highlight { background: linear-gradient(90deg, #ff4655, #ff8a00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800;}
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(90deg, #ff4655, #e73c4a);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 70, 85, 0.3);
            background: linear-gradient(90deg, #ff5765, #f74c5a);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: #ff4655;
            border-radius: 2px;
        }
        .main-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff4655;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a span {
            color: #ff4655;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
        }
        .desktop-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: #fff;
            background: rgba(255, 70, 85, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.98);
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 1rem;
            border-top: 1px solid #333;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #ccc;
            text-decoration: none;
            padding: 12px;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #ff4655;
        }
        .breadcrumb {
            padding: 20px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff4655;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0c0c0c 70%);
            padding: 100px 0 60px;
            text-align: center;
            border-bottom: 1px solid #222;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #ccc;
        }
        .search-section {
            background: rgba(30, 30, 46, 0.7);
            padding: 40px 0;
            margin: 40px 0;
            border-radius: 12px;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 20px 30px;
            border: none;
            background: #1e1e2e;
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #ff4655, #e73c4a);
            color: white;
            border: none;
            padding: 0 40px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ff5765, #f74c5a);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(20, 20, 30, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            color: #fff;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        .article-content h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #ffcc00;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            color: #ddd;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 5px solid #ff4655;
            padding-left: 25px;
            margin: 2.5rem 0;
            font-style: italic;
            color: #aaa;
            background: rgba(255, 70, 85, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-content ul, .article-content ol {
            margin: 1.5rem 0 1.5rem 2rem;
            color: #ddd;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .featured-image {
            margin: 3rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #333;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-image figcaption {
            padding: 15px;
            background: #222;
            color: #aaa;
            font-size: 0.9rem;
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 20, 30, 0.8);
            padding: 25px;
            border-radius: 12px;
            border-top: 5px solid #ff4655;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            justify-content: center;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 12px;
            background: #1a1a2e;
            border: 1px solid #444;
            border-radius: 6px;
            color: white;
        }
        .rating-widget button {
            align-self: flex-start;
        }
        .interactive-box {
            background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #333;
            margin: 2.5rem 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .interactive-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 70, 85, 0.2);
        }
        .interactive-box h4 {
            color: #ffcc00;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .footer-links {
            background: #0a0a0f;
            padding: 60px 0 40px;
            border-top: 2px solid #222;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ff4655;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.1);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #ff4655;
        }
        .main-footer {
            background: #050508;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #222;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
        }
        .footer-logo span { color: #ff4655; }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            margin-top: 20px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
            .article-content { padding: 25px; }
            .article-content h2 { font-size: 1.9rem; }
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-btn { width: 100%; border-radius: 0; padding: 18px; }
        }
