* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #c53030;
            --secondary-color: #1a202c;
            --accent-color: #f6ad55;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --bg-light: #f7fafc;
            --bg-dark: #1a202c;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-primary);
            background-color: var(--bg-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--bg-dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-dark);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem 0;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #9b2c2c);
            padding: 2rem 0;
            text-align: center;
            color: white;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-button:hover {
            background-color: #fbd38d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #fffaf0;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        .stats-box {
            background: linear-gradient(to right, var(--secondary-color), #2d3748);
            color: white;
            padding: 1.5rem;
            border-radius: 6px;
            margin: 2rem 0;
        }
        .stats-box h3 {
            color: white;
            border-bottom: 1px solid var(--accent-color);
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: var(--text-secondary);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .insider-tip {
            background-color: #e6fffa;
            border: 1px solid #81e6d9;
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .insider-tip::before {
            content: "💡";
            position: absolute;
            left: -10px;
            top: -10px;
            background: white;
            border-radius: 50%;
            padding: 5px;
            font-size: 1.2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary-color);
        }
        .ticket-widget {
            background: linear-gradient(135deg, var(--secondary-color), #2d3748);
            color: white;
            text-align: center;
        }
        .ticket-widget h3 {
            color: white;
        }
        .countdown {
            font-size: 2rem;
            font-weight: 800;
            margin: 1rem 0;
            color: var(--accent-color);
        }
        .booking-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-weight: 700;
            margin-top: 1rem;
            width: 100%;
            text-align: center;
        }
        .booking-button:hover {
            background-color: #9b2c2c;
            text-decoration: none;
            color: white;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .interactive-section {
            margin-top: 3rem;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #e2e8f0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i.active {
            color: #f6ad55;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background-color: #9b2c2c;
        }
        .footer-links {
            background-color: var(--secondary-color);
            padding: 3rem 0;
            color: white;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 4px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.1);
        }
        .web-link a {
            color: #cbd5e0;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        .site-footer {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #2d3748;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #a0aec0;
        }
        .social-links a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .main-content {
                padding: 1.5rem 0;
            }
            .article-content {
                padding: 1.5rem;
            }
            .stats-box {
                padding: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 4px;
                width: 100%;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h2 {
                font-size: 1.5rem;
            }
            .sidebar-widget {
                padding: 1rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .site-header, .sidebar, .search-section, .interactive-section, .footer-links, .site-footer {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
