        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #0a0a0a;
            background-image: linear-gradient(to bottom, #0a0a0a 0%, #1a1a2e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c19a6b;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #e6c391;
            text-shadow: 0 0 8px rgba(193, 154, 107, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 15, 25, 0.95);
            border-bottom: 1px solid #333;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #c19a6b;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo span {
            color: #8b7355;
        }
        .my-logo:hover {
            color: #e6c391;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c19a6b;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c19a6b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 0;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(10, 10, 15, 0.8);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #c19a6b;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #c19a6b;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 2px 2px 5px #000;
        }
        h2 {
            font-size: 2rem;
            color: #d4b483;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #e6c391;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #f0d9b5;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            margin-bottom: 30px;
            text-align: center;
            font-style: italic;
        }
        strong {
            color: #f0d9b5;
            font-weight: 700;
        }
        em {
            color: #c19a6b;
        }
        blockquote {
            border-left: 4px solid #c19a6b;
            padding-left: 20px;
            margin: 30px 0;
            color: #bbb;
            font-style: italic;
            background: rgba(50, 50, 60, 0.3);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 8px;
            border: 2px solid #444;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-size: 0.95rem;
            color: #888;
            margin-top: 10px;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(193, 154, 107, 0.1), rgba(42, 40, 60, 0.3));
            border-left: 5px solid #c19a6b;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .link-item {
            background: rgba(40, 40, 55, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .link-item:hover {
            transform: translateY(-5px);
            background: rgba(60, 60, 80, 0.7);
        }
        .interactive-section {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #d4b483;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 15, 0.8);
            border: 1px solid #555;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c19a6b;
            box-shadow: 0 0 8px rgba(193, 154, 107, 0.5);
        }
        button {
            background: linear-gradient(to right, #8b7355, #c19a6b);
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: linear-gradient(to right, #9c7f60, #d4b483);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            color: #555;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            padding: 0 5px;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        footer {
            background: rgba(10, 10, 15, 0.95);
            border-top: 1px solid #333;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #c19a6b;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            background: rgba(40, 40, 55, 0.5);
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 10px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(60, 60, 80, 0.7);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            article {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
