        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff6699);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Palatino Linotype', serif;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 204, 0, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(15, 12, 41, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #444;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 20px;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(30, 27, 65, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffcc00;
            text-align: center;
            text-shadow: 2px 2px 4px #000;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.3rem;
            margin: 40px 0 20px;
            color: #ff6699;
            border-left: 5px solid #ff6699;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #66ccff;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #99ff99;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #ccc;
            text-align: center;
            padding: 25px;
            margin: 30px auto;
            max-width: 800px;
            border-top: 2px dashed #ffcc00;
            border-bottom: 2px dashed #ffcc00;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background: rgba(50, 47, 85, 0.7);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s;
            border: 1px solid transparent;
        }
        .feature-card:hover {
            border-color: #ffcc00;
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(255, 204, 0, 0.2);
        }
        .feature-icon {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .interactive-section {
            background: rgba(20, 17, 45, 0.9);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        button {
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #000;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(to right, #ffdb4d, #ffad33);
            transform: scale(1.05);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #555;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating i.active {
            color: #ffcc00;
        }
        footer {
            background: rgba(10, 8, 29, 0.98);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #ffcc00;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: all 0.3s;
            font-weight: 600;
        }
        friend-link:hover {
            background: rgba(255, 204, 0, 0.2);
            padding-left: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            margin-top: 15px;
            color: #ffcc00;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .container { padding: 0 15px; }
            article { padding: 20px; }
            .feature-card { padding: 20px; }
        }
