        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #121212;
            background-image: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
            padding-top: 80px;
        }
        a {
            color: #f0a500;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #f0a500;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #f0a500;
            text-shadow: 0 0 10px rgba(240, 165, 0, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ffcc00;
            text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(240, 165, 0, 0.1);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #f0a500;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background-color: #1a1a1a;
            padding: 12px 20px;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f0a500;
        }
        main {
            padding: 30px 0;
            background-color: #151515;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 25px;
            background-color: rgba(26, 26, 26, 0.8);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #f0a500;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #333;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #e0b050;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #d0a040;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.3rem;
            color: #c09030;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(240, 165, 0, 0.1);
            border-left: 4px solid #f0a500;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #f0a500;
            font-weight: bold;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        .form-section {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 8px;
            margin: 40px 0;
            border: 1px solid #333;
        }
        .form-title {
            color: #f0a500;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: grid;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            color: #ccc;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 12px;
            background-color: #252525;
            border: 1px solid #444;
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f0a500;
            box-shadow: 0 0 5px rgba(240, 165, 0, 0.3);
        }
        button {
            background-color: #f0a500;
            color: #121212;
            border: none;
            padding: 14px 24px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            justify-self: start;
        }
        button:hover {
            background-color: #ffcc00;
            transform: translateY(-2px);
        }
        .search-container {
            display: flex;
            margin: 30px 0;
            background-color: #1a1a1a;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #333;
        }
        .search-input {
            flex-grow: 1;
            padding: 16px 25px;
            border: none;
            background: transparent;
            color: #e0e0e0;
            font-size: 1.1rem;
        }
        .search-button {
            background-color: #f0a500;
            color: #121212;
            border: none;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-button:hover {
            background-color: #ffcc00;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .content-card {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            border-color: #f0a500;
        }
        #last-updated {
            color: #f0a500;
            font-weight: bold;
        }
        footer {
            background-color: #0a0a0a;
            padding: 40px 0 20px;
            border-top: 2px solid #333;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f0a500;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background-color: #1a1a1a;
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            border-left: 4px solid #f0a500;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: #252525;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: 0;
                height: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                overflow: hidden;
                transition: height 0.5s ease;
                z-index: 999;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            #nav-toggle:checked ~ .nav-links {
                height: 300px;
                padding: 20px 0;
            }
            .nav-links li {
                margin: 15px 0;
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 12px;
                width: 80%;
                margin: 0 auto;
            }
            article {
                padding: 20px;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-container {
                padding: 10px 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .search-container {
                flex-direction: column;
                border-radius: 8px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
            }
            .search-button {
                padding: 15px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .py-20 {
            padding-top: 20px;
            padding-bottom: 20px;
        }
