        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ffd700, #ffaa00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        .my-logo a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 1.5rem;
        }
        .main-nav a {
            color: #e6e6e6;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd700;
            background-color: rgba(255, 215, 0, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #1a1a2e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #1a1a2e;
            border-left: 4px solid #ffd700;
            padding-left: 10px;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 2rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        h3 {
            font-size: 1.6rem;
            color: #0f3460;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #0f3460;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #444;
            background-color: #f8f9fa;
            padding: 1rem;
            border-left: 4px solid #0f3460;
            margin-bottom: 2rem;
        }
        strong {
            color: #1a1a2e;
        }
        a.content-link {
            color: #0f3460;
            text-decoration: none;
            border-bottom: 1px dotted #0f3460;
            transition: all 0.2s;
        }
        a.content-link:hover {
            color: #ffaa00;
            border-bottom: 1px solid #ffaa00;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        .interactive-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .interactive-box h3 {
            color: #1a1a2e;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
        }
        button, .btn {
            background: linear-gradient(to right, #0f3460, #1a1a2e);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
            text-decoration: none;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1a1a2e, #0f3460);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .star {
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .site-footer {
            background-color: #1a1a2e;
            color: #e6e6e6;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
        }
        .friend-links li a {
            color: #e6e6e6;
            text-decoration: none;
            padding: 0.3rem 0.6rem;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .friend-links li a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: #16213e;
                transition: left 0.3s ease;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 0.5rem 0;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
