        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background: linear-gradient(135deg, #0f1923 0%, #1a242f 100%); color: #ece8e1; line-height: 1.7; min-height: 100vh; display: flex; flex-direction: column; }
        a { color: #ff4655; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ffffff; text-shadow: 0 0 8px #ff4655; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(15, 25, 35, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #ff4655; position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; background: linear-gradient(90deg, #ff4655, #0f1923); -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding: 5px; }
        .logo a:hover { background: linear-gradient(90deg, #ffffff, #ff4655); -webkit-background-clip: text; }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 25px; }
        nav ul li a { font-weight: 600; padding: 8px 12px; border-radius: 4px; }
        nav ul li a:hover { background: rgba(255, 70, 85, 0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ff4655; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #b8b8b8; }
        .breadcrumb a { color: #b8b8b8; }
        .breadcrumb a:hover { color: #ff4655; }
        main { flex: 1; padding: 30px 0; }
        article { background: rgba(26, 36, 47, 0.8); border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); margin-bottom: 30px; }
        h1 { font-size: 3.2rem; color: #ff4655; text-align: center; margin-bottom: 25px; text-shadow: 0 0 15px rgba(255, 70, 85, 0.5); }
        h2 { font-size: 2.2rem; color: #ece8e1; border-left: 5px solid #ff4655; padding-left: 15px; margin: 40px 0 20px; }
        h3 { font-size: 1.8rem; color: #b8b8b8; margin: 30px 0 15px; }
        h4 { font-size: 1.4rem; color: #8a8a8a; margin: 20px 0 10px; }
        p { margin-bottom: 20px; font-size: 1.1rem; text-align: justify; }
        .highlight { background: rgba(255, 70, 85, 0.1); padding: 15px; border-radius: 8px; border-left: 4px solid #ff4655; margin: 20px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 40px 0; }
        .feature { background: rgba(15, 25, 35, 0.7); padding: 25px; border-radius: 10px; border: 1px solid #2a3a4a; }
        .feature h3 { color: #ff4655; }
        form { margin: 25px 0; }
        input, textarea, select { width: 100%; padding: 12px; margin: 10px 0; background: #0f1923; border: 1px solid #2a3a4a; border-radius: 6px; color: #ece8e1; font-size: 1rem; }
        button { background: linear-gradient(90deg, #ff4655, #c43a47); color: white; border: none; padding: 14px 28px; font-size: 1.1rem; border-radius: 6px; cursor: pointer; font-weight: bold; transition: transform 0.3s, box-shadow 0.3s; }
        button:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(255, 70, 85, 0.4); }
        .rating { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
        .stars { color: #ffd700; font-size: 1.5rem; }
        footer { background: #0f1923; padding: 40px 0 20px; border-top: 2px solid #ff4655; margin-top: 50px; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #ff4655; margin-bottom: 20px; }
        friend-link { display: block; margin: 8px 0; color: #b8b8b8; }
        friend-link a:hover { color: #ffffff; }
        .copyright { text-align: center; padding-top: 25px; border-top: 1px solid #2a3a4a; margin-top: 30px; color: #8a8a8a; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            nav ul { display: none; flex-direction: column; width: 100%; background: rgba(15, 25, 35, 0.98); position: absolute; top: 80px; left: 0; padding: 20px; }
            nav ul.active { display: flex; }
            nav ul li { margin: 10px 0; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            article { padding: 25px; }
        }
