        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background-color: #0a0e17;
            background-image: radial-gradient(circle at 20% 30%, #1a2a3a 0%, transparent 20%),
                              radial-gradient(circle at 80% 80%, #2a1a2a 0%, transparent 20%);
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #c92a2a, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 2px 12px rgba(201, 42, 42, 0.7);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #c92a2a, #f76707);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f0f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(15, 20, 32, 0.98);
            backdrop-filter: blur(15px);
            border-top: 1px solid #2a3b5c;
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            font-size: 1.1rem;
            padding: 10px 0;
            border-bottom: 1px solid #2a3b5c;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 10px;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding-top: 20px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #e9ecef, #adb5bd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #94a3b8;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-section {
            background-color: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid #2a3b5c;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #f8f9fa;
            border-left: 5px solid #c92a2a;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            margin: 25px 0 15px;
            color: #e9ecef;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #d1d5db;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(201, 42, 42, 0.15), rgba(247, 103, 7, 0.15));
            border-left: 4px solid #f76707;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            color: #f8f9fa;
            font-weight: 600;
        }
        .featured-image {
            margin: 35px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            max-width: 900px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            padding: 10px;
            background-color: rgba(30, 35, 50, 0.8);
        }
        .time-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(30, 35, 50, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .time-table th {
            background: linear-gradient(90deg, #2a1a2a, #1a2a3a);
            color: #f8f9fa;
            padding: 18px 15px;
            text-align: left;
            font-size: 1.1rem;
        }
        .time-table td {
            padding: 15px;
            border-bottom: 1px solid #3a4a6a;
            color: #d1d5db;
        }
        .time-table tr:last-child td {
            border-bottom: none;
        }
        .time-table tr:hover {
            background-color: rgba(50, 60, 80, 0.5);
        }
        .interactive-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-box {
            background-color: rgba(25, 30, 45, 0.9);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #3a4a6a;
            display: flex;
            flex-direction: column;
        }
        .feature-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #74c0fc;
        }
        .feature-box form {
            margin-top: auto;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #e9ecef;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(40, 45, 60, 0.9);
            border: 1px solid #4a5a7a;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 1.8rem;
            color: #495057;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .star.active {
            color: #ffd43b;
        }
        button {
            background: linear-gradient(90deg, #c92a2a, #e8590c);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 0.5px;
        }
        button:hover {
            background: linear-gradient(90deg, #e03131, #fd7e14);
            box-shadow: 0 5px 15px rgba(224, 49, 49, 0.4);
            transform: translateY(-3px);
        }
        .search-bar {
            display: flex;
            margin: 30px 0;
        }
        .search-bar input {
            flex-grow: 1;
            border-radius: 8px 0 0 8px;
            border-right: none;
        }
        .search-bar button {
            width: auto;
            border-radius: 0 8px 8px 0;
            padding: 12px 25px;
        }
        .related-links {
            margin: 50px 0;
        }
        .web-link {
            background-color: rgba(30, 35, 50, 0.8);
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-left: 4px solid #4dabf7;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(40, 45, 60, 0.9);
            transform: translateX(5px);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background-color: rgba(10, 14, 23, 0.95);
            border-top: 1px solid #2a3b5c;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f8f9fa;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: #74c0fc;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3b5c;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .bold {
            font-weight: 800;
            color: #f8f9fa;
        }
        .text-center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-30 {
            margin-top: 30px;
        }
