        * {
            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, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0f0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dc3ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #4dc3ff;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #4dc3ff, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(77, 195, 255, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .nav-links a:hover {
            background: rgba(77, 195, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dc3ff;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a0d2ff;
        }
        .breadcrumb a::after {
            content: " › ";
            margin: 0 10px;
            color: #4dc3ff;
        }
        .breadcrumb a:last-child::after {
            content: "";
        }
        .search-box {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(77, 195, 255, 0.3);
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 10px 0 0 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 30px;
            border: none;
            border-radius: 0 10px 10px 0;
            background: linear-gradient(90deg, #4dc3ff, #0077cc);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
        }
        .content {
            background: rgba(18, 35, 55, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin: 30px auto;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ffcc00, #4dc3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #ffcc00;
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: #4dc3ff;
            margin: 35px 0 20px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a0d2ff;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            padding: 25px;
            border-left: 5px solid #ffcc00;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .img-container img {
            max-height: 500px;
            object-fit: cover;
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        .link-item {
            background: rgba(77, 195, 255, 0.1);
            padding: 12px 25px;
            border-radius: 30px;
            border: 1px solid rgba(77, 195, 255, 0.3);
        }
        .link-item:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateY(-5px);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px dashed rgba(255, 255, 255, 0.2);
        }
        .interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .comment-box, .rating-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(77, 195, 255, 0.3);
        }
        .interaction h3 {
            text-align: center;
        }
        textarea, select, input {
            width: 100%;
            padding: 15px;
            margin: 15px 0;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffcc00;
            margin: 20px 0;
            cursor: pointer;
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(90deg, #00cc66, #00994d);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            transform: scale(1.02);
        }
        footer {
            background: rgba(6, 15, 28, 0.95);
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 204, 0, 0.1);
            padding: 10px 20px;
            margin: 10px;
            border-radius: 20px;
            border: 1px solid rgba(255, 204, 0, 0.3);
        }
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                flex-direction: column;
                padding: 20px;
                text-align: center;
                border-top: 2px solid #4dc3ff;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content {
                padding: 25px;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                border-radius: 10px;
                margin: 5px 0;
            }
            .link-list {
                flex-direction: column;
                align-items: center;
            }
        }
