        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF4655;
            --secondary: #0F1923;
            --accent: #1E78FF;
            --light: #F8F9FA;
            --dark: #121A23;
            --gray: #6C757D;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e14;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            background: linear-gradient(90deg, #FF4655, #FF8E53);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #FF4655;
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #FF8E53;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #FF4655;
            text-decoration: underline;
        }
        strong {
            color: #FFD166;
            font-weight: 700;
        }
        em {
            color: #9EEBCF;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background-color: var(--dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo-icon {
            color: var(--primary);
            font-size: 2rem;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #FF4655, #FF8E53);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: #ffffff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            padding: 1.5rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: rgba(15, 25, 35, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb-item {
            color: var(--gray);
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb-item a {
            color: var(--accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 1.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(18, 26, 35, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 70, 85, 0.1);
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .info-box {
            background: linear-gradient(135deg, rgba(30, 120, 255, 0.1), rgba(255, 70, 85, 0.1));
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box-title {
            color: #FF8E53;
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }
        .tip-box {
            background-color: rgba(255, 215, 102, 0.1);
            border: 1px solid rgba(255, 215, 102, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .tip-title {
            color: #FFD166;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .step-list {
            list-style: none;
            counter-reset: step-counter;
            margin: 2rem 0;
        }
        .step-list li {
            counter-increment: step-counter;
            margin-bottom: 1.5rem;
            padding-left: 3.5rem;
            position: relative;
        }
        .step-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        @media (max-width: 992px) {
            .sidebar {
                order: -1;
            }
        }
        .sidebar-widget {
            background-color: rgba(18, 26, 35, 0.8);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 70, 85, 0.1);
        }
        .widget-title {
            color: #FF4655;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 70, 85, 0.3);
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: white;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.25rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-button:hover {
            background-color: #ff2e3f;
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .rating-star {
            color: #FFD166;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover {
            transform: scale(1.2);
        }
        .rating-text {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            color: #ffffff;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.75rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(30, 120, 255, 0.2);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 0.85rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .site-footer {
            background-color: var(--dark);
            margin-top: 3rem;
            border-top: 2px solid var(--primary);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 2.5rem 1.5rem;
            background-color: rgba(15, 25, 35, 0.9);
        }
        .web-link {
            padding: 0.75rem 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 70, 85, 0.1);
            transform: translateX(5px);
        }
        .footer-bottom {
            padding: 1.5rem;
            text-align: center;
            color: var(--gray);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.5), transparent);
            margin: 2.5rem 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        @media (max-width: 768px) {
            .main-content, .article-content, .sidebar-widget {
                padding: 1.5rem;
            }
            .header-container {
                padding: 1rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.75rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
