        * { 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: #e0e7ff; line-height: 1.7; min-height: 100vh; }
        h1, h2, h3, h4 { color: #ffd166; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: 2.8rem; text-align: center; margin-top: 2rem; border-bottom: 3px solid #00a8e8; padding-bottom: 1rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #00a8e8; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #70d6ff; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #a0c8ff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #00a8e8; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ffd166; text-shadow: 0 0 8px rgba(255, 209, 102, 0.5); }
        strong { color: #ffd166; font-weight: 700; }
        em { color: #a0c8ff; font-style: italic; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        section { padding: 2.5rem 0; border-bottom: 1px solid rgba(0, 168, 232, 0.2); }
        header { background: rgba(12, 26, 45, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; padding: 1rem 0; border-bottom: 2px solid #00a8e8; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2.2rem; font-weight: 900; background: linear-gradient(90deg, #ffd166, #00a8e8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; letter-spacing: 1px; }
        .my-logo:hover { transform: scale(1.05); }
        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { font-weight: 600; padding: 0.5rem 1rem; border-radius: 5px; }
        nav a:hover, nav a.active { background: rgba(0, 168, 232, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffd166; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #a0c8ff; }
        .breadcrumb a { color: #70d6ff; }
        .breadcrumb a:hover { color: #ffd166; }
        .search-section { background: rgba(26, 58, 95, 0.6); padding: 2rem; border-radius: 15px; margin: 2rem 0; text-align: center; }
        .search-form { display: flex; max-width: 600px; margin: 0 auto; }
        .search-input { flex-grow: 1; padding: 15px 20px; border: none; border-radius: 50px 0 0 50px; background: #0c1a2d; color: #e0e7ff; font-size: 1rem; }
        .search-btn { padding: 15px 30px; border: none; border-radius: 0 50px 50px 0; background: linear-gradient(90deg, #00a8e8, #0077b6); color: white; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-btn:hover { background: linear-gradient(90deg, #0077b6, #005885); }
        .featured-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 15px; border: 3px solid #00a8e8; margin: 2rem 0; box-shadow: 0 10px 25px rgba(0,0,0,0.5); transition: transform 0.5s; }
        .featured-img:hover { transform: scale(1.01); }
        .codes-table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: rgba(26, 58, 95, 0.7); border-radius: 10px; overflow: hidden; }
        .codes-table th, .codes-table td { padding: 1.2rem 1rem; text-align: left; border-bottom: 1px solid rgba(0, 168, 232, 0.3); }
        .codes-table th { background: rgba(0, 168, 232, 0.4); color: #ffd166; font-size: 1.2rem; }
        .codes-table tr:hover { background: rgba(0, 168, 232, 0.1); }
        .code { font-family: monospace; font-size: 1.3rem; color: #ffd166; font-weight: bold; letter-spacing: 1px; }
        .copy-btn { background: #00a8e8; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
        .copy-btn:hover { background: #0077b6; }
        .user-module { background: rgba(26, 58, 95, 0.6); padding: 2rem; border-radius: 15px; margin: 3rem 0; }
        .rating-stars { font-size: 2rem; color: #ffd166; margin: 1rem 0; }
        .rating-stars .fa-star { cursor: pointer; margin: 0 3px; transition: color 0.3s, transform 0.3s; }
        .rating-stars .fa-star:hover { transform: scale(1.2); }
        .comment-box, .score-form { width: 100%; padding: 15px; margin-bottom: 1rem; border-radius: 10px; border: 1px solid #00a8e8; background: #0c1a2d; color: #e0e7ff; font-size: 1rem; }
        .submit-btn { background: linear-gradient(90deg, #ffd166, #ff9e00); color: #0c1a2d; border: none; padding: 12px 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 7px 15px rgba(255, 209, 102, 0.4); }
        footer { background: #0c1a2d; padding: 3rem 0 1.5rem; margin-top: 3rem; border-top: 3px solid #00a8e8; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; }
        .footer-section h4 { color: #ffd166; margin-bottom: 1.5rem; }
        friend-link { display: block; padding: 0.8rem 0; border-bottom: 1px dashed rgba(112, 214, 255, 0.3); }
        friend-link a { color: #70d6ff; }
        friend-link a:hover { color: #ffd166; padding-left: 5px; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(112, 214, 255, 0.3); color: #a0c8ff; font-size: 0.9rem; }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .header-content { flex-direction: column; gap: 1rem; }
            nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 100%; left: 0; 
                width: 100%; 
                background: rgba(12, 26, 45, 0.98); 
                padding: 1rem; 
                border-top: 2px solid #00a8e8;
            }
            nav ul.active { display: flex; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 50px; width: 100%; margin-bottom: 10px; }
            .codes-table { display: block; overflow-x: auto; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
            .user-module { padding: 1.5rem; }
        }
        .pulse { animation: pulse 2s infinite; }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 168, 232, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0); }
        }
        .last-updated { background: rgba(255, 209, 102, 0.1); padding: 10px 20px; border-radius: 50px; display: inline-block; margin: 1rem 0; font-size: 0.9rem; color: #ffd166; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .highlight-box { background: linear-gradient(135deg, rgba(0, 168, 232, 0.15), rgba(255, 209, 102, 0.15)); padding: 2rem; border-radius: 15px; border-left: 5px solid #ffd166; margin: 2rem 0; }
