        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-purple: #6a11cb;
            --secondary-purple: #2575fc;
            --accent-gold: #ffd700;
            --accent-red: #c53030;
            --text-light: #f8f9fa;
            --text-gray: #adb5bd;
            --bg-dark: #0d1117;
            --bg-card: #161b22;
            --border-color: #30363d;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffed4e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), #16213e);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--primary-purple);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent-gold), #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--accent-gold);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background: rgba(106, 17, 203, 0.2);
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(22, 27, 34, 0.8);
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-gray);
        }
        .search-container {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-purple);
            border-radius: 5px 0 0 5px;
            background: var(--primary-dark);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        .article-content {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--accent-gold);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--primary-purple);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #6a11cb;
        }
        h3 {
            font-size: 1.5rem;
            color: #2575fc;
        }
        h4 {
            font-size: 1.2rem;
            color: #ff8a00;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        strong {
            color: var(--accent-gold);
        }
        .lead {
            font-size: 1.2rem;
            background: linear-gradient(90deg, rgba(106,17,203,0.1), rgba(37,117,252,0.1));
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-purple);
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border: 2px solid var(--accent-gold);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
        }
        .promo-code {
            background: linear-gradient(90deg, #1a2a3a, #2d3748);
            border: 2px dashed var(--accent-gold);
            padding: 1rem;
            font-family: monospace;
            font-size: 1.5rem;
            text-align: center;
            letter-spacing: 2px;
            margin: 1rem 0;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .promo-code:hover {
            background: linear-gradient(90deg, #2d3748, #1a2a3a);
            transform: translateY(-3px);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--primary-purple);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.5rem;
        }
        .widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-purple);
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .rating-section, .comment-section {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--text-light);
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            background: var(--primary-dark);
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .site-footer {
            background: var(--primary-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-purple);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(106, 17, 203, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .menu-toggle {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 1.5rem;
            }
            .main-nav {
                order: 2;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                background: rgba(255,255,255,0.05);
                border-radius: 5px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
