        * { 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, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffcc00, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #b0bec5;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active { color: #ffcc00; border-bottom-color: #ffcc00; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #ffcc00;
        }
        main {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            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(255, 204, 0, 0.1);
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4fc3f7;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d6a7;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffab91;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #bbdefb;
            font-weight: 300;
            margin-bottom: 2em;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.15), transparent);
            padding: 20px;
            border-left: 4px solid #ffcc00;
            margin: 25px 0;
            font-style: italic;
        }
        ul, ol { padding-left: 30px; margin-bottom: 1.5em; }
        li { margin-bottom: 0.8em; }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #bbdefb;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #4fc3f7;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }
        button, .btn {
            background: linear-gradient(to right, #ff9800, #ffcc00);
            color: #0c1a2d;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ffcc00, #ff9800);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 152, 0, 0.4);
        }
        .search-box {
            background: rgba(12, 26, 45, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .comment-section, .rating-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin-top: 50px;
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment-item {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #4fc3f7;
        }
        .comment-meta {
            display: flex;
            justify-content: space-between;
            color: #b0bec5;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .stars {
            color: #ffcc00;
            margin: 10px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin: 40px 0;
            border: 3px solid #ffcc00;
            box-shadow: 0 15px 25px rgba(0,0,0,0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #b0bec5;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        footer {
            background: #0a1520;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid #ffcc00;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .friend-links a {
            background: rgba(255, 204, 0, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #ffcc00;
        }
        .friend-links a:hover {
            background: rgba(255, 204, 0, 0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3f5f;
            color: #78909c;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 20px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .last-updated {
            color: #ffab91;
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #4fc3f7;
        }
