* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #2e1a5e;
            --secondary: #ff2d75;
            --accent: #ffd700;
            --bg: #0d0418;
            --card-bg: #1a0a2e;
            --text: #e0d6f2;
            --text-light: #b8a8d9;
            --heading-font: 'Segoe UI', 'Josefin Sans', sans-serif;
            --body-font: 'Inter', 'Roboto', system-ui, sans-serif;
        }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body-font); background: var(--bg); color: var(--text); line-height: 1.8; overflow-x: hidden; }
        img { max-width: 100%; height: auto; border-radius: 12px; }
        a { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #fff; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
        .site-header { background: linear-gradient(135deg, #1a0a2e 0%, #2e1a5e 50%, #0d0418 100%); border-bottom: 3px solid var(--secondary); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.6); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
        .my-logo { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
        .my-logo i { color: var(--secondary); font-size: 2rem; }
        .my-logo span { background: linear-gradient(90deg, #ff2d75, #ffd700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
        .main-nav { display: flex; gap: 1.2rem; align-items: center; }
        .main-nav a { color: #d0c0e8; font-weight: 600; font-size: 0.95rem; padding: 0.5rem 0.8rem; border-radius: 20px; transition: all 0.3s; }
        .main-nav a:hover { background: rgba(255, 45, 117, 0.25); color: #fff; }
        .main-nav a i { margin-right: 5px; }
        .search-bar { background: rgba(255,255,255,0.08); border-radius: 30px; padding: 0.4rem 1rem; display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.1); }
        .search-bar input { background: transparent; border: none; color: #fff; outline: none; padding: 0.3rem 0.5rem; font-size: 0.9rem; width: 180px; }
        .search-bar input::placeholder { color: #9a8abc; }
        .search-bar button { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 1rem; }
        .breadcrumb { background: #140724; padding: 0.8rem 0; border-bottom: 1px solid #2a1a4a; font-size: 0.85rem; }
        .breadcrumb .container { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
        .breadcrumb a { color: var(--text-light); }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: #5a4a7a; }
        .hero { position: relative; padding: 4rem 0 3rem; overflow: hidden; text-align: center; background: radial-gradient(ellipse at top, #1a0a2e 0%, #0d0418 100%); }
        .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 65,60 75,90 50,70 25,90 35,60 10,40 40,40" fill="rgba(255,45,117,0.05)"/></svg>'); background-size: 80px 80px; opacity: 0.4; }
        .hero-content { position: relative; z-index: 2; }
        .hero h1 { font-size: 3.2rem; font-weight: 900; background: linear-gradient(45deg, #ffd700, #ff2d75, #7b2ff7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; line-height: 1.2; }
        .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; color: var(--text-light); }
        .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn { padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all 0.3s; display: inline-block; }
        .btn-primary { background: linear-gradient(90deg, var(--secondary), #ff6b35); color: #fff !important; box-shadow: 0 4px 20px rgba(255,45,117,0.4); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,45,117,0.6); }
        .btn-outline { border: 2px solid var(--accent); color: var(--accent) !important; }
        .btn-outline:hover { background: rgba(255,215,0,0.1); transform: translateY(-3px); }
        .main-content { padding: 3rem 0 4rem; }
        .content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-card { background: var(--card-bg); border-radius: 16px; padding: 2rem; margin-bottom: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3); border-left: 4px solid var(--secondary); transition: transform 0.3s; }
        .article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
        h1 { font-size: 2.4rem; color: #fff; margin-bottom: 1.5rem; }
        h2 { font-size: 1.8rem; color: var(--accent); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(255,215,0,0.3); }
        h3 { font-size: 1.4rem; color: #fff; margin: 1.5rem 0 0.8rem; }
        h4 { font-size: 1.1rem; color: var(--text-light); margin: 1rem 0 0.5rem; }
        .article-card h2 { border-bottom: none; }
        .article-card h3 { color: var(--accent); }
        .article-card h4 { color: #d0c0e8; }
        p { margin-bottom: 1.2rem; }
        .highlight-box { background: linear-gradient(135deg, rgba(255,45,117,0.15), rgba(255,215,0,0.1)); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; border: 1px solid rgba(255,215,0,0.2); }
        .featured-image { margin: 2rem 0; text-align: center; }
        .featured-image img { box-shadow: 0 8px 30px rgba(0,0,0,0.5); border: 3px solid var(--secondary); max-height: 450px; width: 100%; object-fit: cover; }
        .featured-image figcaption { font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; }
        .data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden; }
        .data-table th { background: var(--primary); color: #fff; padding: 1rem; font-weight: 700; }
        .data-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .data-table tr:hover td { background: rgba(255,45,117,0.08); }
        .sidebar { position: sticky; top: 80px; align-self: start; }
        .widget { background: var(--card-bg); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
        .widget h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--accent); }
        .widget ul { list-style: none; }
        .widget ul li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .widget ul li:last-child { border-bottom: none; }
        .widget ul li a { color: var(--text-light); font-size: 0.95rem; }
        .widget ul li a:hover { color: var(--accent); padding-left: 5px; }
        .feedback-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
        @media (max-width: 768px) { .feedback-section { grid-template-columns: 1fr; } }
        .feedback-form { background: var(--card-bg); border-radius: 16px; padding: 1.5rem; }
        .feedback-form h3 { margin-bottom: 1rem; }
        .feedback-form input, .feedback-form textarea, .feedback-form select { width: 100%; padding: 0.8rem; margin-bottom: 1rem; background: #2a1a4a; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; outline: none; font-family: inherit; }
        .feedback-form input:focus, .feedback-form textarea:focus, .feedback-form select:focus { border-color: var(--secondary); }
        .feedback-form textarea { min-height: 100px; resize: vertical; }
        .feedback-form button { background: linear-gradient(90deg, var(--secondary), #ff6b35); color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; cursor: pointer; font-weight: 700; transition: all 0.3s; }
        .feedback-form button:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,45,117,0.4); }
        .rating-stars { display: flex; gap: 5px; margin-bottom: 1rem; }
        .rating-stars i { color: var(--accent); cursor: pointer; font-size: 1.3rem; transition: transform 0.2s; }
        .rating-stars i:hover { transform: scale(1.3); }
        .site-footer { background: #120722; border-top: 3px solid var(--secondary); padding: 3rem 0 1.5rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-content h3 { color: var(--accent); margin-bottom: 1rem; }
        .footer-content ul { list-style: none; }
        .footer-content ul li { padding: 0.3rem 0; }
        .footer-content ul li a { color: var(--text-light); }
        .footer-content ul li a:hover { color: var(--accent); }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); color: var(--text-light); font-size: 0.85rem; }
        friend-link { display: block; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 1rem; margin: 1rem 0; font-size: 0.9rem; }
        friend-link a { color: var(--accent); margin: 0 0.5rem; }
        @media (max-width: 768px) {
            .header-inner { flex-wrap: wrap; }
            .nav-toggle { display: block; order: 3; }
            .main-nav { display: none; width: 100%; order: 4; flex-direction: column; padding: 1rem 0; }
            .main-nav.open { display: flex; }
            .search-bar { order: 2; }
            .search-bar input { width: 120px; }
            .hero h1 { font-size: 2rem; }
            .content-grid { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .article-card { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            .search-bar { display: none; }
            .hero h1 { font-size: 1.6rem; }
            .hero p { font-size: 1rem; }
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .animate-in { animation: fadeIn 0.6s ease forwards; }
        #scrollTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--secondary); color: #fff; border: none; cursor: pointer; font-size: 1.2rem; display: none; z-index: 100; box-shadow: 0 4px 20px rgba(255,45,117,0.4); transition: all 0.3s; }
        #scrollTop:hover { transform: translateY(-5px); }
        #scrollTop.show { display: block; }
