* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 20px 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: #334155;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fbbf24;
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e2e8f0;
        }
        main {
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            font-size: 2.2rem;
            color: #fbbf24;
            margin-bottom: 25px;
            border-left: 5px solid #60a5fa;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            color: #cbd5e1;
        }
        article emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        .highlight {
            background-color: #334155;
            padding: 25px;
            border-left: 5px solid #10b981;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #fbbf24;
            font-size: 1.3rem;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #475569;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
        }
        aside {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            align-self: start;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #fbbf24;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #475569;
        }
        .search-form input {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 15px;
            margin-top: 15px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.03);
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-form button, .rating-form button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .comment-form button:hover, .rating-form button:hover {
            transform: scale(1.05);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-stars i {
            color: #fbbf24;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .footer-links {
            background-color: #1e293b;
            padding: 50px 20px;
            margin-top: 60px;
            border-radius: 15px 15px 0 0;
        }
        .footer-links h3 {
            text-align: center;
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 40px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background-color: #334155;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #475569;
        }
        footer {
            background-color: #0f172a;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid #334155;
            color: #94a3b8;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 50px 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
