        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c8a165;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #f0d08c;
            text-shadow: 0 0 5px rgba(200, 161, 101, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1f26, #0f1419);
            padding: 1rem 2rem;
            border-bottom: 2px solid #3a4658;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #c8a165, #8b7355);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #f0d08c, #c8a165);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8a165;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #c8a165;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f26;
                padding: 1rem 2rem;
                border-top: 1px solid #3a4658;
                display: none;
            }
            .main-nav.active {
                display: flex;
            }
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #1a1f26;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3542;
        }
        .breadcrumb a {
            color: #8b9cb0;
        }
        .breadcrumb a:hover {
            color: #c8a165;
        }
        .breadcrumb span {
            color: #c8a165;
            margin: 0 0.5rem;
        }
        .main-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }
        .interactive-module {
            background: #1a1f26;
            border: 1px solid #3a4658;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .interactive-module h3 {
            margin-bottom: 1rem;
            color: #f0d08c;
            border-left: 4px solid #c8a165;
            padding-left: 0.75rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            background-color: #2a3542;
            border: 1px solid #3a4658;
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #3a4658;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star {
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffc107;
        }
        .btn-submit {
            background: linear-gradient(to right, #8b7355, #c8a165);
            color: #0f1419;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #c8a165, #f0d08c);
            box-shadow: 0 0 10px rgba(200, 161, 101, 0.5);
        }
        .article-content {
            width: 100%;
            background: #1a1f26;
            border-radius: 8px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 2px solid #3a4658;
            padding-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #f0d08c;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .article-meta {
            color: #8b9cb0;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: #c8a165;
        }
        h2 {
            font-size: 2rem;
            color: #f0d08c;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a4658;
        }
        h3 {
            font-size: 1.6rem;
            color: #d4b483;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #c8a165;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #d0d0d0;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #f0d08c;
            background: rgba(42, 53, 66, 0.5);
            padding: 1.5rem;
            border-left: 5px solid #c8a165;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .highlight {
            background-color: rgba(200, 161, 101, 0.1);
            border-left: 4px solid #c8a165;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .bold {
            font-weight: bold;
            color: #f0d08c;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .article-image {
            margin: 2rem auto;
            border: 3px solid #3a4658;
            border-radius: 5px;
            overflow: hidden;
            max-width: 800px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .article-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8b9cb0;
            padding: 0.5rem;
            background-color: #2a3542;
            font-size: 0.95rem;
        }
        .content-link {
            background: rgba(200, 161, 101, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            border-bottom: 1px dashed #c8a165;
        }
        .content-link:hover {
            background: rgba(200, 161, 101, 0.2);
        }
        .site-footer {
            background-color: #1a1f26;
            border-top: 2px solid #3a4658;
            padding: 2rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #f0d08c;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            background: #2a3542;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 0.5rem;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #3a4658;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #3a4658;
            color: #8b9cb0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container, .main-container, .footer-container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .lead {
                font-size: 1.1rem;
            }
        }
