        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dccbd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #00fff7;
            text-shadow: 0 0 8px rgba(0, 255, 247, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #00adb5, #0097a7);
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 150, 200, 0.4);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 150, 200, 0.6);
        }
        .header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid #00adb5;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00fff7, #00adb5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 173, 181, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00fff7;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00adb5;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 15, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #00adb5;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(0, 173, 181, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .hero {
            padding: 60px 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(0, 173, 181, 0.1) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00fff7, #ff9a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 173, 181, 0.2);
        }
        .article h2 {
            font-size: 2.2rem;
            margin: 30px 0 20px;
            color: #00fff7;
            border-left: 5px solid #ff9a00;
            padding-left: 15px;
        }
        .article h3 {
            font-size: 1.8rem;
            margin: 25px 0 15px;
            color: #ff9a00;
        }
        .article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article emoji {
            font-size: 1.5rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .article .highlight {
            background: rgba(0, 173, 181, 0.15);
            border-left: 4px solid #00fff7;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
            font-weight: bold;
        }
        .article img {
            margin: 30px auto;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(0, 173, 181, 0.2);
            align-self: start;
        }
        .sidebar h3 {
            color: #00fff7;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid #00adb5;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ff9a00;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ffcc00;
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 40px 0;
            border-top: 1px solid rgba(0, 173, 181, 0.3);
            border-bottom: 1px solid rgba(0, 173, 181, 0.3);
            margin-top: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 173, 181, 0.2);
            transform: scale(1.05);
        }
        .footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer p {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .article { padding: 25px; }
            .article h2 { font-size: 1.8rem; }
            .article h3 { font-size: 1.5rem; }
            .web-links { flex-direction: column; align-items: center; }
        }
