* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s;
        }
        a:hover {
            color: #004999;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff9900;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e68a00;
        }
        nav {
            margin-top: 15px;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background: #004999;
            margin-top: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #e9ecef;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:after {
            content: '>';
            margin-left: 10px;
            color: #666;
        }
        .breadcrumb li:last-child:after {
            content: '';
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #003366;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid #ff9900;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #0066cc;
            margin: 30px 0 15px;
            padding-top: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: #004999;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            color: #333;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #ff9900;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -10px;
            margin-bottom: 20px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        .link-list a {
            background: #f1f8ff;
            padding: 12px;
            border-radius: 8px;
            display: block;
            border: 1px solid #cce0ff;
        }
        .link-list a:hover {
            background: #e1f0ff;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #003366;
            margin-top: 0;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 8px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .rating-stars span:hover,
        .rating-stars span:hover ~ span {
            color: #ff9900;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button[type="submit"] {
            background: #0066cc;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #004999;
        }
        footer {
            background: #003366;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .friend-links a {
            color: #a3d5ff;
            background: rgba(255,255,255,0.05);
            padding: 8px 15px;
            border-radius: 5px;
        }
        .friend-links a:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 576px) {
            .header-top { flex-direction: column; gap: 15px; }
            .search-form { width: 100%; }
            h1 { font-size: 2rem; }
            article, .widget { padding: 20px; }
        }
