        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            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: 800;
            background: linear-gradient(to right, #fbbf24, #f87171);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(96, 165, 250, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            border-top: 1px solid #334155;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 10px;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1e293b;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        .breadcrumb span {
            color: #94a3b8;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fbbf24, #f87171);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .search-bar {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-bar input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #475569;
            border-radius: 50px 0 0 50px;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-bar button {
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-bar button:hover {
            opacity: 0.9;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        article h2 {
            font-size: 2.2rem;
            color: #fbbf24;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        article h3 {
            font-size: 1.6rem;
            color: #93c5fd;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        article strong {
            color: #fbbf24;
            font-weight: 700;
        }
        article em {
            color: #86efac;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e40af, #7c3aed);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 6px solid #fbbf24;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            border: 3px solid #475569;
        }
        aside {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 30px;
            align-self: start;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        aside h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .comment-form, .rating-form {
            background-color: #0f172a;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .comment-form h3, .rating-form h3 {
            color: #60a5fa;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            background-color: #1e293b;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #fbbf24;
        }
        .submit-btn {
            background: linear-gradient(to right, #10b981, #3b82f6);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: opacity 0.3s;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .footer-links {
            background-color: #1e293b;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #1e40af;
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0f172a;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid #334155;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #475569, transparent);
            margin: 40px 0;
        }
