:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --text-light: #f1f1f1;
            --text-dim: #b0b0b0;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff7b93;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #e94560, #00b4d8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .breadcrumb {
            padding: 12px 20px;
            background-color: rgba(15, 52, 96, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:last-of-type {
            color: var(--accent);
        }
        .search-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 30px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ff2e4f;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent);
            line-height: 1.2;
        }
        article h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            color: #00b4d8;
        }
        article h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #4cc9f0;
        }
        article h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #72efdd;
        }
        article p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: var(--text-dim);
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--border-color);
        }
        aside {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-bottom: 20px;
            color: var(--accent);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: gold;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 14px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #ff2e4f;
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--border-color);
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }
        friend-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--card-bg);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .copyright {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
            padding: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
