* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0077CC; 
            --secondary: #FF0033; 
            --dark: #111827;
            --light: #F8FAFC;
            --gray: #6B7280;
            --accent: #F59E0B;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
            border-bottom: 2px solid var(--primary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo a:hover {
            background: linear-gradient(to right, var(--secondary), #ff6699);
            -webkit-background-clip: text;
        }
        .search-box {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 15px;
            margin: 0 20px;
            flex-grow: 0.4;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            width: 100%;
            padding: 5px 10px;
            outline: none;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--accent);
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--gray);
            background: rgba(15, 23, 42, 0.8);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        main {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 30%, #0f172a 100%);
            padding: 2rem 0;
            min-height: 150vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #334155;
        }
        .article-header h1 {
            font-size: 3.2rem;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .meta-info i {
            margin-right: 5px;
            color: var(--accent);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.5rem 0 1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 119, 204, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
            border-left: 4px solid var(--secondary);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            border-radius: 12px;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .related-links {
            background: rgba(30, 41, 59, 0.7);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .related-links h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        .related-links li:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .related-links a {
            display: flex;
            align-items: center;
            color: #e2e8f0;
        }
        .related-links i {
            margin-right: 10px;
            color: var(--accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            border-top: 4px solid var(--primary);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: var(--accent);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget select,
        .comment-widget textarea {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #475569;
            background: rgba(15, 23, 42, 0.7);
            color: white;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-widget button {
            background: linear-gradient(to right, var(--primary), #00a8ff);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover,
        .comment-widget button:hover {
            background: linear-gradient(to right, var(--secondary), #ff4757);
            transform: translateY(-2px);
        }
        .quick-facts ul {
            list-style: none;
        }
        .quick-facts li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #475569;
            display: flex;
            justify-content: space-between;
        }
        .quick-facts li:last-child {
            border-bottom: none;
        }
        .quick-facts .value {
            color: var(--accent);
            font-weight: bold;
        }
        .site-footer {
            background: var(--dark);
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--primary);
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .footer-about p {
            color: #94a3b8;
            margin: 1rem 0;
        }
        .friend-links h4,
        .footer-contact h4 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #cbd5e1;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        friend-link i {
            margin-right: 10px;
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #334155;
            color: #64748b;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                flex-grow: 1;
                margin: 1rem 0 0 0;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 4;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #334155;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
