        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0e17 100%);
            padding: 1.5rem 0;
            border-bottom: 2px solid #1e3a8a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #4dabf7, #da77f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #c1c9d2;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(77, 171, 247, 0.1);
            color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4dabf7;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2332;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            border: 1px solid #2d3748;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem;
            border-bottom: 1px solid #2d3748;
            color: #c1c9d2;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        main {
            padding: 2.5rem 0;
            background-color: #111827;
        }
        article {
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #4dabf7;
            padding-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #da77f2;
        }
        h3 {
            font-size: 1.7rem;
            color: #a5d8ff;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b197fc;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(77, 171, 247, 0.1);
            border-left: 4px solid #4dabf7;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .exclusive-data {
            background-color: rgba(218, 119, 242, 0.1);
            border: 1px dashed #da77f2;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .interview {
            background-color: rgba(165, 216, 255, 0.1);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-style: italic;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        b, strong {
            color: #ffd43b;
        }
        .interactive-section {
            background-color: #162032;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .feature-box {
            background-color: #1e293b;
            padding: 1.8rem;
            border-radius: 10px;
            border-top: 4px solid #4dabf7;
        }
        .feature-box h3 {
            color: #74c0fc;
            margin-top: 0;
        }
        .feature-box form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .feature-box input, .feature-box textarea, .feature-box select {
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #4a5568;
            background-color: #2d3748;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .feature-box button {
            background: linear-gradient(90deg, #4dabf7, #3b82f6);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .feature-box button:hover {
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(59, 130, 246, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .related-links {
            background-color: rgba(30, 41, 59, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 1px solid #4a5568;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .links-grid a {
            display: block;
            padding: 0.7rem 1rem;
            background-color: #2d3748;
            border-radius: 6px;
            border-left: 4px solid #da77f2;
        }
        .links-grid a:hover {
            background-color: #374151;
            border-left-color: #4dabf7;
        }
        footer {
            background-color: #0a0e17;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #1e3a8a;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #a5d8ff;
            margin: 0 0.8rem;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
        }
        .update-time {
            color: #da77f2;
            font-weight: bold;
            margin-top: 0.5rem;
        }
