        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2c1810;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #92400e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(120deg, #fde68a80 0%, #fde68a80 100%);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, #b45309, #d97706);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(180, 83, 9, 0.3);
            background: linear-gradient(to right, #92400e, #b45309);
        }
        .main-header {
            background-color: #1e293b;
            color: #f1f5f9;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fbbf24;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: #60a5fa;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #cbd5e1;
            font-weight: 500;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #1e293b;
            flex-direction: column;
            padding: 20px;
            gap: 20px;
            display: none;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #cbd5e1;
            padding: 10px 0;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #64748b;
        }
        .breadcrumb a { color: #475569; }
        .hero {
            background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1610890716171-6b1bb98ffd09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            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: #e2e8f0;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @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: #1e293b;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #fbbf24;
            font-size: 1.8rem;
        }
        article h3 {
            color: #334155;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid #b45309;
            padding-left: 20px;
            margin: 25px 0;
            color: #475569;
            font-style: italic;
        }
        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;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #1e293b;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #fbbf24;
            font-size: 1.3rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 50px;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 10px 0;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover {
            color: #f59e0b;
        }
        .comment-section {
            margin-top: 50px;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .comment-form label {
            display: block;
            margin: 15px 0 5px;
            font-weight: 600;
            color: #334155;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            margin-top: 20px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            padding: 40px 0;
        }
        .web-link {
            background: white;
            padding: 18px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #1e293b;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:before {
            content: '🎲';
            font-size: 1.2rem;
        }
        .main-footer {
            background-color: #1e293b;
            color: #cbd5e1;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h4 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-col ul li {
            list-style: none;
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
