        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #e63946;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a4161a;
            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, #e63946, #ff6b6b);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
        }
        .btn:hover {
            background: linear-gradient(135deg, #a4161a, #e63946);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
            text-decoration: none;
            color: white;
        }
        header {
            background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd166, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: initial;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #f1faee;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: rgba(230, 57, 70, 0.2);
            text-decoration: none;
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #e63946;
        }
        .breadcrumb span {
            color: #495057;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 50px;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        article h2 {
            color: #1a1a1a;
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd166;
        }
        article h2:first-of-type {
            margin-top: 0;
        }
        article h3 {
            color: #e63946;
            font-size: 1.7rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        article strong {
            color: #0a0a0a;
            font-weight: 700;
        }
        article em {
            background-color: #fffacd;
            font-style: italic;
            padding: 2px 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid #e63946;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-container figcaption {
            font-style: italic;
            color: #6c757d;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        aside h3 {
            color: #1a1a1a;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ced4da;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }
        .search-box button {
            background: #e63946;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #a4161a;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 30px;
        }
        .stars {
            font-size: 2rem;
            color: #ffd166;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .stars span {
            transition: color 0.2s;
        }
        .stars span:hover,
        .stars span.active {
            color: #ff9e00;
        }
        .rating-result {
            font-weight: bold;
            color: #1a1a1a;
            margin-top: 10px;
        }
        .comment-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }
        .comment-section h2 {
            color: #1a1a1a;
            font-size: 2rem;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd166;
        }
        .comment-form .form-group {
            margin-bottom: 20px;
        }
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ced4da;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #e63946;
            outline: none;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-list {
            margin-top: 40px;
        }
        .comment {
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .comment-author {
            font-weight: bold;
            color: #1a1a1a;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .comment-body {
            color: #495057;
            line-height: 1.6;
        }
        .internal-links {
            background: #1a1a1a;
            color: white;
            padding: 40px 20px;
            margin-bottom: 30px;
            border-radius: 15px;
        }
        .internal-links h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #ffd166;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .web-link a {
            color: #f1faee;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: #ffd166;
        }
        .web-link i {
            color: #e63946;
        }
        footer {
            background: #0a0a0a;
            color: #adb5bd;
            padding: 50px 20px 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #f1faee;
        }
        .footer-links a:hover {
            color: #ffd166;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a1a;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .main-content {
                gap: 30px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
