        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --highlight-color: #e94560;
            --text-primary: #ffffff;
            --text-secondary: #b8b8d1;
            --border-color: #2d3047;
            --card-bg: rgba(26, 26, 46, 0.9);
            --transition: all 0.3s ease;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --radius: 12px;
            --gradient: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background: var(--gradient);
            background-attachment: fixed;
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, #e94560, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            margin: 2rem 0;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--highlight-color);
        }
        h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #4cc9f0;
            padding: 1rem 0;
            border-left: 4px solid var(--highlight-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            color: var(--text-primary);
            margin-top: 2.5rem;
            position: relative;
            padding-left: 0.5rem;
        }
        h3:before {
            content: "⚡";
            margin-right: 0.5rem;
            color: var(--highlight-color);
        }
        h4 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--text-secondary);
            margin-top: 2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: clamp(1rem, 1.1vw, 1.125rem);
            color: var(--text-secondary);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--highlight-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--highlight-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: var(--transition);
            position: relative;
        }
        .my-logo:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: #4cc9f0;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--highlight-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--highlight-color);
        }
        .nav-desktop a:hover:after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: var(--primary-color);
            z-index: 1001;
            transition: var(--transition);
            padding: 2rem;
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: var(--text-primary);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: var(--accent-color);
            padding-left: 1.5rem;
        }
        .close-menu {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(15, 52, 96, 0.8);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--highlight-color);
        }
        .breadcrumb li:not(:last-child):after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .content-section {
            background: var(--card-bg);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 3px solid var(--accent-color);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 48px rgba(233, 69, 96, 0.2);
        }
        .info-box {
            background: rgba(15, 52, 96, 0.3);
            border-left: 4px solid var(--highlight-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .info-box h4 {
            color: var(--highlight-color);
            margin-top: 0;
            border: none;
        }
        .search-section {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 3rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--accent-color);
            background: var(--secondary-color);
            color: var(--text-primary);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-button {
            background: var(--highlight-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-button:hover {
            background: #ff2e63;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .comment-form, .rating-form {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            background: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-primary);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .submit-button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .submit-button:hover {
            background: var(--highlight-color);
            transform: translateY(-2px);
        }
        .content-links {
            background: rgba(15, 52, 96, 0.2);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .content-links h4 {
            color: #4cc9f0;
            margin-bottom: 1rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .content-links a {
            color: var(--highlight-color);
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 6px;
            transition: var(--transition);
            display: block;
        }
        .content-links a:hover {
            background: rgba(233, 69, 96, 0.1);
            padding-left: 1rem;
        }
        footer {
            background: var(--primary-color);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--highlight-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        friend-link a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--highlight-color);
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .highlight {
            color: var(--highlight-color);
            font-weight: 700;
        }
        .bold {
            font-weight: 700;
            color: var(--text-primary);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .content-section {
                padding: 1.5rem;
            }
            .header-content {
                padding: 0.75rem 0;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--radius);
                margin-bottom: 0.5rem;
            }
            .search-button {
                border-radius: var(--radius);
            }
        }
        @media (max-width: 480px) {
            .content-section {
                padding: 1rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-color);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-color);
        }
