:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff6b81;
            --light: #f1f1f1;
            --gray: #8a8a9e;
            --dark-gray: #2d3047;
            --gold: #ffd700;
            --silver: #c0c0c0;
            --bronze: #cd7f32;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --container-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--light);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--accent);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--accent-light);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after,
        .nav-desktop a.active:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 70px);
            background: var(--secondary);
            transition: var(--transition);
            padding: 30px;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            overflow-y: auto;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            color: var(--light);
            padding: 15px 0;
            border-bottom: 1px solid var(--dark-gray);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .breadcrumb {
            background: var(--dark-gray);
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--light);
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(45, 48, 71, 0.7);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: rgba(45, 48, 71, 0.7);
            border-radius: var(--radius);
            padding: 25px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--dark-gray);
        }
        .widget:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .widget-title {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .search-box {
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--dark-gray);
            border-radius: 30px;
            background: var(--primary);
            color: var(--light);
            font-size: 1rem;
        }
        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent-light);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            color: var(--gray);
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active,
        .star:hover {
            color: var(--gold);
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: var(--radius);
            border: 1px solid var(--dark-gray);
            background: var(--primary);
            color: var(--light);
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--accent-light);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-light);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark-gray);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--light);
            margin: 30px 0 15px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--light);
            background: rgba(233, 69, 96, 0.1);
            padding: 20px;
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 30px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px;
            background: var(--dark-gray);
            color: var(--gray);
            font-style: italic;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        strong {
            color: var(--gold);
            font-weight: 700;
        }
        em {
            color: var(--accent-light);
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid var(--gold);
            padding: 20px;
            margin: 30px 0;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(45,48,71,0.8) 100%);
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            padding: 25px;
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            border-top: 4px solid var(--accent);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
        }
        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--dark-gray);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            border-radius: var(--radius);
            border: 1px solid var(--dark-gray);
            background: var(--primary);
            color: var(--light);
            margin-bottom: 15px;
            font-family: inherit;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: var(--radius);
            border: 1px solid var(--dark-gray);
            background: var(--primary);
            color: var(--light);
        }
        .comment-form button {
            padding: 15px 30px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent-light);
        }
        .footer-links {
            background: var(--dark-gray);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px 10px 0;
            padding: 8px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(233,69,96,0.2);
            transform: translateY(-3px);
        }
        .site-footer {
            background: var(--primary);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--accent);
        }
        .copyright {
            color: var(--gray);
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--dark-gray);
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
