        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
            padding-bottom: 60px;
        }
        h1, h2, h3, h4 {
            color: #ffd700;
            font-weight: 700;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
            margin-top: 1.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid #0077cc;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #4db8ff;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #80d4ff;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: #4db8ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        em {
            color: #a3d9ff;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: #0077cc;
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: #ffd700;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #80d4ff;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            background: rgba(30, 45, 70, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid #ffd700;
            margin: 30px 0;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        .interaction-module {
            background: rgba(20, 35, 60, 0.8);
            border: 1px solid #0077cc;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
        }
        .module-title {
            color: #4db8ff;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-title i {
            color: #ffd700;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: grid;
            gap: 15px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #4db8ff;
            box-shadow: 0 0 0 3px rgba(77, 184, 255, 0.3);
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #0077cc, #005fa3);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(90deg, #005fa3, #004a7c);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 87, 163, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .star-rating .star {
            transition: color 0.2s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .internal-links {
            background: rgba(255, 215, 0, 0.05);
            border-left: 5px solid #ffd700;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        .internal-links li a {
            color: #a3d9ff;
            display: block;
            padding: 12px;
            border-radius: 5px;
            background-color: rgba(20, 35, 60, 0.5);
            transition: background-color 0.3s ease;
        }
        .internal-links li a:hover {
            background-color: rgba(77, 184, 255, 0.2);
        }
        .site-footer {
            margin-top: 60px;
            background-color: rgba(12, 26, 45, 0.95);
            padding: 40px 0;
            border-top: 2px solid #0077cc;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #80d4ff;
            padding: 8px 0;
            border-bottom: 1px dashed #444;
        }
        friend-link a {
            color: inherit;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 20px;
            font-style: italic;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 15px;
            }
            .internal-links ul {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(12, 26, 45, 0.98);
                width: 250px;
                padding: 30px;
                border-radius: 0 0 0 15px;
                border-left: 2px solid #ffd700;
                transition: right 0.5s ease;
                gap: 0;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #333;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .main-content {
                padding: 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .feature-img {
                max-height: 300px;
            }
        }
