* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #e74c3c;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e74c3c;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ecf0f1;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ecf0f1;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ecf0f1;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #34495e;
            transition: background 0.3s ease;
        }
        .nav-mobile a:hover {
            background: rgba(231, 76, 60, 0.1);
        }
        .breadcrumb {
            background: rgba(52, 73, 94, 0.8);
            padding: 1rem 0;
            margin-top: 80px;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            color: #bdc3c7;
        }
        .breadcrumb a {
            color: #ecf0f1;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #e74c3c;
        }
        main {
            background: rgba(236, 240, 241, 0.95);
            margin: 2rem auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            padding: 2rem;
        }
        .article-content {
            line-height: 1.8;
        }
        .article-content h2 {
            color: #2c3e50;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e74c3c;
        }
        .article-content h3 {
            color: #34495e;
            margin: 1.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .feature-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 1rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .sidebar {
            background: #34495e;
            color: white;
            padding: 2rem;
            border-radius: 10px;
        }
        .search-box {
            background: #2c3e50;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .search-box input {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        .search-box button {
            width: 100%;
            padding: 0.8rem;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #c0392b;
        }
        .rating-widget {
            text-align: center;
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #f39c12;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-section {
            background: #2c3e50;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .comment-section textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .comment-section button {
            width: 100%;
            padding: 0.8rem;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-section button:hover {
            background: #219a52;
        }
        .footer-links {
            background: #2c3e50;
            padding: 3rem 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #34495e;
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #3d566e;
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: #e74c3c;
        }
        footer {
            background: #1a1a2e;
            color: #bdc3c7;
            text-align: center;
            padding: 2rem 0;
            border-top: 2px solid #e74c3c;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .header-content {
                padding: 0.5rem 0;
            }
            .breadcrumb {
                margin-top: 60px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .content-grid {
                padding: 1rem;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
