        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a1f;
            color: #e6dcc9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0b323;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b3c 0%, #0a151f 100%);
            padding: 20px 0;
            border-bottom: 3px solid #c19a6b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f0b323;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #15232d;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #c19a6b;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 5px;
        }
        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;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #2a4359;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f0b323;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1a2b3c;
                width: 250px;
                height: calc(100vh - 80px);
                padding-top: 30px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
        }
        main {
            padding: 30px 0;
            background-color: #0c151c;
            border-radius: 10px;
            margin-top: 20px;
        }
        h1, h2, h3, h4 {
            color: #f0b323;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid #c19a6b;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.5rem;
            margin-top: 40px;
            border-left: 5px solid #c19a6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            margin-top: 30px;
            color: #d4af37;
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 25px;
            color: #e6dcc9;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.15rem;
        }
        .highlight {
            background-color: #2a4359;
            padding: 20px;
            border-left: 5px solid #f0b323;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .card {
            background-color: #15232d;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .card h3 {
            color: #f0b323;
            margin-bottom: 20px;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        input, textarea, select {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #c19a6b;
            border-radius: 5px;
            background-color: #0f1a1f;
            color: #e6dcc9;
            font-size: 1rem;
        }
        button {
            padding: 12px 20px;
            background-color: #c19a6b;
            color: #0f1a1f;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #f0b323;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
        }
        .feature-img {
            text-align: center;
            margin: 40px 0;
        }
        .feature-img figcaption {
            font-style: italic;
            margin-top: 10px;
            color: #aaa;
        }
        .content-links {
            margin: 30px 0;
            padding: 20px;
            background-color: #1a2b3c;
            border-radius: 8px;
        }
        .content-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .content-links li {
            margin: 5px;
        }
        .content-links a {
            padding: 10px 15px;
            background-color: #2a4359;
            border-radius: 5px;
            display: inline-block;
        }
        .content-links a:hover {
            background-color: #c19a6b;
            color: #0f1a1f;
        }
        footer {
            background-color: #0a151f;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #c19a6b;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            font-size: 1.2rem;
            background-color: #15232d;
            padding: 15px;
            border-radius: 8px;
            width: 100%;
            text-align: center;
        }
        friend-link a {
            color: #f0b323;
            font-weight: bold;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #2a4359;
            padding-top: 20px;
            width: 100%;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #c19a6b;
            margin-top: 20px;
            padding: 10px;
            background-color: #15232d;
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            h4 { font-size: 1.3rem; }
            p { font-size: 1.05rem; }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
