        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c1a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(46, 16, 101, 0.15) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(101, 16, 46, 0.1) 0%, transparent 20%);
            z-index: -1;
        }
        a {
            color: #6ab0ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc5c;
            text-shadow: 0 0 8px rgba(255, 204, 92, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: #1a1a2e;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 126, 95, 0.5);
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-4 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: linear-gradient(90deg, rgba(106, 176, 255, 0.2), rgba(255, 204, 92, 0.2));
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #6ab0ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            background: linear-gradient(45deg, #6ab0ff, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            font-weight: 900;
            letter-spacing: -1px;
        }
        .my-logo a:hover {
            filter: brightness(1.2);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc5c;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #6ab0ff;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            padding: 20px;
            border-top: 1px solid #333;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .breadcrumb {
            background: rgba(20, 20, 35, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc5c;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #6ab0ff;
        }
        .search-container {
            background: rgba(30, 30, 50, 0.6);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #444;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #6ab0ff;
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #6ab0ff, #4a8fe7);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #4a8fe7, #6ab0ff);
        }
        .main-content {
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 35, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(106, 176, 255, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc5c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 92, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #6ab0ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(106, 176, 255, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: #ff7e5f;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a78bfa;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 300;
            line-height: 1.8;
        }
        .quote {
            border-left: 4px solid #ffcc5c;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #aaa;
            background: rgba(255, 204, 92, 0.05);
            padding-top: 15px;
            padding-bottom: 15px;
        }
        .info-box {
            background: rgba(106, 176, 255, 0.1);
            border-left: 5px solid #6ab0ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 126, 95, 0.1);
            border: 1px solid rgba(255, 126, 95, 0.3);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff7e5f;
            display: block;
        }
        .interactive-section {
            background: rgba(30, 30, 50, 0.6);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
        }
        .rating-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc5c;
            transform: scale(1.2);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #555;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .comment-form button {
            background: linear-gradient(90deg, #a78bfa, #8b5cf6);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background: rgba(50, 50, 70, 0.5);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #a78bfa;
        }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 2px solid #ff7e5f;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        friend-link {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffcc5c;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
        }
        .friend-links a {
            color: #6ab0ff;
            font-weight: 600;
            padding: 10px 20px;
            background: rgba(106, 176, 255, 0.1);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .friend-links a:hover {
            background: rgba(106, 176, 255, 0.3);
            color: #ffcc5c;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 30px;
            border-top: 1px solid #333;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content { padding: 0 15px; }
            .my-logo a { font-size: 1.6rem; }
            article { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; padding: 15px; }
            .friend-links { flex-direction: column; align-items: center; }
            .friend-links a { display: block; width: 100%; max-width: 300px; text-align: center; }
        }
        @media (max-width: 480px) {
            body { font-size: 1rem; }
            h1 { font-size: 1.8rem; }
            .container { padding: 0 15px; }
            .interactive-section { padding: 25px; }
        }
