        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a1f;
            color: #e9dcc9;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f7e7a6;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            margin-bottom: 60px;
        }
        header {
            background: linear-gradient(to bottom, #16232b 0%, #0a1219 100%);
            padding: 20px 0;
            border-bottom: 2px solid #2a4d5e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Times New Roman', serif;
            text-shadow: 2px 2px 4px #000;
            background: linear-gradient(45deg, #d4af37, #f7e7a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(42, 77, 94, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #16232b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a4d5e;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #2a4d5e;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        main {
            padding: 40px 0;
            background-color: #0c151b;
            background-image: radial-gradient(circle at 20% 30%, rgba(42, 77, 94, 0.1) 0%, transparent 20%);
        }
        h1 {
            font-size: 3.5rem;
            color: #f7e7a6;
            margin-bottom: 30px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 20px;
            text-shadow: 1px 1px 3px #000;
        }
        h2 {
            font-size: 2.5rem;
            color: #d4af37;
            margin: 40px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #d4af37;
        }
        h3 {
            font-size: 1.8rem;
            color: #e9dcc9;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8c9d0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            background-color: rgba(42, 77, 94, 0.2);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #d4af37;
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 3px 8px;
            border-radius: 3px;
            font-weight: 600;
        }
        .quote {
            font-style: italic;
            font-size: 1.25rem;
            color: #b8c9d0;
            border-left: 4px solid #2a4d5e;
            padding-left: 25px;
            margin: 30px 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: #d4af37;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 2px solid #2a4d5e;
        }
        .image-caption {
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 10px;
            font-style: italic;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dashed #d4af37;
        }
        .interactive-section {
            background-color: rgba(15, 26, 31, 0.7);
            border: 1px solid #2a4d5e;
            border-radius: 10px;
            padding: 30px;
            margin: 50px 0;
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: #f7e7a6;
            font-size: 1.8rem;
        }
        .interactive-title i {
            color: #d4af37;
        }
        form {
            display: grid;
            gap: 20px;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #b8c9d0;
        }
        input, textarea, select {
            padding: 15px;
            background-color: #0c151b;
            border: 1px solid #2a4d5e;
            border-radius: 5px;
            color: #e9dcc9;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
        }
        button {
            background: linear-gradient(to right, #d4af37, #b8941f);
            color: #0f1a1f;
            border: none;
            padding: 16px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(to right, #e5c158, #d4af37);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        footer {
            background-color: #0a1219;
            padding: 50px 0 20px;
            border-top: 2px solid #2a4d5e;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 25px;
            border-bottom: 1px solid #2a4d5e;
            padding-bottom: 10px;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #94a3b8;
            padding: 5px 0;
            display: block;
        }
        friend-link a:hover {
            color: #d4af37;
            padding-left: 10px;
            transition: all 0.3s;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a4d5e;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .intro { font-size: 1.1rem; padding: 20px; }
            p { font-size: 1.05rem; }
            .container { padding: 0 15px; }
            .interactive-section { padding: 20px; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .header-content { flex-direction: column; gap: 20px; }
            .breadcrumb { text-align: center; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main section {
            animation: fadeIn 0.8s ease-out;
        }
