:root {
            --primary-purple: #6a0dad;
            --secondary-pink: #ff00ff;
            --dark-bg: #0a0a1a;
            --content-bg: #1a1a2e;
            --accent-blue: #00eeff;
            --text-light: #f0f0ff;
            --text-muted: #b0b0d0;
            --card-bg: #252547;
            --border-color: #3a3a5d;
            --success: #4CAF50;
            --warning: #ff9800;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--secondary-pink);
            text-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-purple) 0%, #4b0082 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--secondary-pink);
            box-shadow: 0 4px 20px rgba(106, 13, 173, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-blue), var(--secondary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.15);
            color: white;
            font-size: 1rem;
            outline: none;
            backdrop-filter: blur(10px);
        }
        .search-form input::placeholder {
            color: #ccccff;
        }
        .search-form button {
            background: var(--secondary-pink);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff00cc;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--accent-blue);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--card-bg);
            width: 100%;
            margin-top: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 20px;
            color: var(--text-light);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent-blue);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            background-color: var(--content-bg);
            border-radius: 15px;
            padding: 30px;
            margin: 25px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-pink);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
        }
        .subtitle {
            font-size: 1.3rem;
            color: var(--accent-blue);
            text-align: center;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--text-muted);
            margin-bottom: 3rem;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 8px;
            color: var(--secondary-pink);
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-blue);
            margin: 3rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #c792ea;
            margin: 2.5rem 0 1.2rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffcb6b;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: #d0d0ff;
            background: rgba(106, 13, 173, 0.1);
            padding: 20px;
            border-left: 4px solid var(--secondary-pink);
            border-radius: 0 10px 10px 0;
            margin: 2.5rem 0;
        }
        .highlight-box {
            background: linear-gradient(145deg, var(--card-bg), #2d2d5a);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .highlight-box h3 {
            margin-top: 0;
            color: var(--accent-blue);
        }
        .image-wrapper {
            margin: 3rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid var(--primary-purple);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            color: var(--text-muted);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin: 2.5rem 0;
        }
        .link-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary-pink);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
        }
        .link-card a {
            font-weight: bold;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 8px;
        }
        .rating-section, .comments-section {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            margin: 4rem 0;
            border: 1px solid var(--border-color);
        }
        .rating-title, .comments-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: var(--accent-blue);
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 14px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255,255,255,0.08);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent-blue);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 0, 255, 0.4);
        }
        footer {
            background: #080814;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--primary-purple);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-blue);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 10px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(106, 13, 173, 0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--text-muted);
        }
        @media (max-width: 992px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }
            .search-form {
                max-width: 100%;
                order: 3;
                margin: 10px 0 0;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.3rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        .text-bold {
            font-weight: 800;
            color: var(--accent-blue);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 238, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 10px;
        }
