:root {
            --primary-blue: #1a365d;
            --secondary-gold: #d4af37;
            --accent-red: #e53e3e;
            --light-gray: #f7fafc;
            --dark-gray: #2d3748;
            --text-color: #2d3748;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            max-width: 100%;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-blue);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary-gold);
        }
        .my-logo span {
            color: var(--secondary-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary-gold);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark-gray);
            padding: 20px;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--accent-red);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--accent-red);
        }
        .cta-button:hover {
            background-color: transparent;
            color: white;
        }
        .search-section {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .search-section h2 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .search-form input, .search-form select {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-blue);
        }
        main {
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 15px;
        }
        article h2 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e2e8f0;
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--dark-gray);
            margin: 25px 0 10px;
        }
        article h4 {
            font-size: 1.2rem;
            color: var(--dark-gray);
            margin: 20px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article strong {
            color: var(--primary-blue);
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 4px solid var(--secondary-gold);
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .insider-tip {
            background-color: #f0f9ff;
            border: 1px solid #90cdf4;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .insider-tip h4 {
            color: #2b6cb0;
            margin-top: 0;
        }
        .content-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        .related-links {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .related-links h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        .related-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .related-links a {
            background-color: white;
            color: var(--primary-blue);
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            border: 1px solid #cbd5e0;
            transition: var(--transition);
            display: inline-block;
        }
        .related-links a:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e2e8f0;
        }
        .ticket-category {
            background-color: var(--light-gray);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        .ticket-category:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .ticket-category h4 {
            color: var(--primary-blue);
            margin-bottom: 8px;
        }
        .price {
            color: var(--accent-red);
            font-weight: 700;
            font-size: 1.2rem;
        }
        .rating-section, .comments-section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 40px 0;
        }
        .rating-section h2, .comments-section h2 {
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        .star-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .stars {
            color: var(--secondary-gold);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form select, .comment-form input, .comment-form textarea {
            padding: 12px;
            border: 1px solid #cbd5e0;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-blue);
        }
        .user-comment {
            border-bottom: 1px solid #e2e8f0;
            padding: 20px 0;
        }
        .user-comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .comment-author {
            font-weight: 600;
            color: var(--primary-blue);
        }
        .comment-date {
            color: #718096;
            font-size: 0.9rem;
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-widget h3 {
            color: var(--secondary-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-widget ul {
            list-style: none;
        }
        .footer-widget li {
            margin-bottom: 10px;
        }
        .footer-widget a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-widget a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        friend-link a {
            color: var(--secondary-gold);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e0;
            font-size: 0.9rem;
        }
        .update-time {
            background-color: var(--light-gray);
            padding: 15px;
            border-radius: 5px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .update-time i {
            color: var(--accent-red);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form select {
                min-width: 100%;
            }
        }
        @media print {
            header, footer, aside, .search-section, .rating-section, .comments-section, .cta-button {
                display: none;
            }
            body {
                font-size: 12pt;
                color: black;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
