        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a1f;
            color: #e0d3b8;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a2f3a 0%, #0a1419 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #8b4513;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: bold;
            color: #c19a6b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a:hover {
            color: #e6c9a0;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            background-color: #2c4a5a;
        }
        nav ul li a:hover {
            background-color: #3a5f73;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c19a6b;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a9a9a9;
        }
        .breadcrumb a {
            color: #c19a6b;
        }
        main {
            padding: 2rem 0;
            background-color: #16232d;
            border-radius: 10px;
            margin-top: 1rem;
        }
        article {
            padding: 2rem;
        }
        h1 {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 3px solid #8b4513;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #c19a6b;
            margin: 2rem 0 1rem;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0d3b8;
            margin: 1.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8a98f;
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #2c4a5a;
            padding: 1.5rem;
            border-left: 5px solid #d4af37;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2rem auto;
            max-width: 800px;
        }
        .image-container img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            border: 2px solid #8b4513;
        }
        .caption {
            font-style: italic;
            color: #a9a9a9;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #8b8b8b;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #8b4513;
        }
        .forms-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .form-box {
            background-color: #1e2e3a;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #3a5f73;
        }
        .form-box h3 {
            color: #d4af37;
            margin-top: 0;
        }
        .form-box input, .form-box textarea, .form-box select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: #2c4a5a;
            border: 1px solid #8b4513;
            border-radius: 5px;
            color: #e0d3b8;
        }
        .form-box button {
            width: 100%;
            padding: 0.8rem;
            background-color: #8b4513;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .form-box button:hover {
            background-color: #a0522d;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars i:hover, .stars i.active {
            color: #ffd700;
        }
        footer {
            background-color: #0a1419;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 3px solid #8b4513;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #c19a6b;
            padding: 0.5rem 1rem;
            background-color: #1a2f3a;
            border-radius: 5px;
            display: inline-block;
            margin: 0.3rem;
        }
        friend-link a:hover {
            background-color: #2c4a5a;
        }
        .copyright {
            margin-top: 2rem;
            color: #8b8b8b;
            font-size: 0.9rem;
            border-top: 1px solid #2c4a5a;
            padding-top: 1rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .forms-section {
                grid-template-columns: 1fr;
            }
        }
        .hover-card {
            background-color: #1e2e3a;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            display: block;
            padding: 1rem;
            background-color: #2c4a5a;
            border-radius: 5px;
            text-align: center;
        }
        .link-list a:hover {
            background-color: #3a5f73;
        }
