* {
            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, #0a2e38 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #29b6f6;
            text-shadow: 0 0 8px rgba(41, 182, 246, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00bcd4;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #00bcd4, #4fc3f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            filter: brightness(1.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #00bcd4;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #4fc3f7;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #b0bec5;
        }
        .breadcrumb a:hover {
            color: #4fc3f7;
        }
        .breadcrumb span {
            color: #78909c;
            margin: 0 8px;
        }
        main {
            min-height: 80vh;
            padding: 30px 0 50px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px dashed #37474f;
        }
        .article-header h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, #00bcd4, #4fc3f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-header .meta {
            color: #b0bec5;
            font-style: italic;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 40, 50, 0.7);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #37474f;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #80deea;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background: rgba(0, 188, 212, 0.15);
            border-left: 5px solid #00bcd4;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #90a4ae;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(30, 40, 50, 0.7);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .widget h3 {
            color: #4fc3f7;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            font-size: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #37474f;
            background: #263238;
            color: #fff;
            border-radius: 6px 0 0 6px;
            outline: none;
        }
        .search-form button {
            background: #00bcd4;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #0097a7;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .form-group label {
            font-weight: 600;
            color: #b0bec5;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #37474f;
            background: #263238;
            color: #fff;
            border-radius: 6px;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #00bcd4;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #37474f;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffeb3b;
        }
        .submit-btn {
            background: linear-gradient(to right, #00bcd4, #4fc3f7);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
        }
        .long-tail-links {
            background: rgba(10, 25, 35, 0.9);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid #00bcd4;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 188, 212, 0.2);
            transform: translateX(5px);
        }
        .site-footer {
            background: #0a1922;
            color: #b0bec5;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #78909c;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10, 25, 35, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.5s ease;
                padding: 20px;
                text-align: center;
                border-top: 1px solid #37474f;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-wrapper {
                gap: 25px;
            }
            .article-content, .widget {
                padding: 20px;
            }
        }
