        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a1428 0%, #1a2b4a 100%);
            min-height: 100vh;
            padding-bottom: 200px;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            opacity: 0.05;
            z-index: -1;
        }
        h1, h2, h3, h4 { font-family: 'Cinzel', 'Times New Roman', serif; color: #ffcc00; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: 3.5rem; text-align: center; margin: 2rem auto; text-shadow: 0 0 15px rgba(255, 204, 0, 0.5); }
        h2 { font-size: 2.5rem; border-bottom: 3px solid #0059b3; padding-bottom: 0.5rem; margin-top: 3rem; }
        h3 { font-size: 2rem; color: #4da6ff; margin-top: 2rem; }
        h4 { font-size: 1.5rem; color: #99ccff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.15rem; text-align: justify; }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.7); }
        strong { color: #ffcc00; font-weight: 700; }
        em { font-style: italic; color: #99ccff; }
        blockquote {
            border-left: 5px solid #ffcc00;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(0, 89, 179, 0.2);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #0059b3;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .my-logo a { color: inherit; }
        .my-logo span { color: #4da6ff; font-size: 1.8rem; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover { background: rgba(0, 89, 179, 0.5); }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(10, 20, 40, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #0059b3;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { display: block; padding: 0.8rem; border-bottom: 1px solid #1a2b4a; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #99ccff;
        }
        .breadcrumb a { margin: 0 5px; }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: radial-gradient(ellipse at center, rgba(0, 89, 179, 0.3) 0%, transparent 70%);
            margin-bottom: 2rem;
        }
        .hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 2rem; }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid #0059b3;
        }
        .search-box h3 { text-align: center; }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #4da6ff;
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: #0059b3;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.1rem;
        }
        .search-form button:hover { background: #ffcc00; color: #0a1428; }
        main { padding: 2rem 0; }
        .content-section {
            background: rgba(26, 43, 74, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(77, 166, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .img-container {
            text-align: center;
            margin: 2rem 0;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #ffcc00;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        .caption { font-style: italic; color: #99ccff; margin-top: 0.5rem; }
        .interactive-box {
            background: rgba(10, 20, 40, 0.8);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 2px dashed #4da6ff;
        }
        .interactive-box h3 { text-align: center; }
        .rating-box {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .star { font-size: 2rem; color: #555; cursor: pointer; transition: color 0.3s, transform 0.2s; }
        .star:hover, .star.active { color: #ffcc00; transform: scale(1.2); }
        .rating-value { font-size: 1.5rem; color: #ffcc00; font-weight: bold; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #4da6ff;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .comment-form button {
            background: linear-gradient(90deg, #0059b3, #4da6ff);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            display: block;
            margin: 0 auto;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.6);
        }
        footer {
            background: rgba(10, 20, 40, 0.98);
            border-top: 3px solid #0059b3;
            padding: 3rem 0 1.5rem;
            position: absolute;
            bottom: 0;
            width: 100%;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 { color: #ffcc00; margin-bottom: 1rem; }
        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 0.8rem; }
        friend-link {
            display: inline-block;
            background: rgba(77, 166, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.3rem;
            border: 1px solid #4da6ff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a2b4a;
            color: #99ccff;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .header-content { padding: 0 1rem; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .content-section { padding: 1.5rem; }
            .hero p { font-size: 1.2rem; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
        }
