        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f72585;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid #4361ee;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4361ee, #f72585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(67, 97, 238, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(22, 33, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #4361ee;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4cc9f0;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(67, 97, 238, 0.3);
        }
        h1 {
            font-size: 3.2rem;
            color: #4cc9f0;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #f72585;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4361ee;
        }
        h3 {
            font-size: 1.8rem;
            color: #4361ee;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #7209b7;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(67, 97, 238, 0.2), transparent);
            padding: 20px;
            border-left: 5px solid #f72585;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 2px dotted #4cc9f0;
        }
        .feature-img {
            width: 100%;
            margin: 30px auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(67, 97, 238, 0.3);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #4cc9f0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: #4361ee;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #3a56d4;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .rating-form select, .comment-form input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #4361ee;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(247, 37, 133, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffc107;
            justify-content: center;
            margin: 10px 0;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #4361ee;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #4cc9f0;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        friend-link:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            font-style: italic;
            color: #aaa;
            text-align: right;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #f72585;
        }
        .text-center {
            text-align: center;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .content-grid {
                gap: 25px;
            }
        }
