:root {
            --primary: #ff4655;
            --secondary: #1a1a2e;
            --accent: #00d8ff;
            --light: #f8f9fa;
            --dark: #162447;
            --gray: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --container-width: 1200px;
        }
        * {
            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.6;
            color: #333;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            background-attachment: fixed;
            color: var(--light);
        }
        a {
            text-decoration: none;
            color: var(--accent);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: var(--light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(255, 70, 85, 0.2);
            color: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .breadcrumb {
            background-color: rgba(22, 36, 71, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 10px;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 70, 85, 0.15) 0%, transparent 70%);
            margin-bottom: 60px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #ddd;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), #ff2e4a);
            color: white;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(255, 70, 85, 0.4);
            transition: var(--transition);
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 70, 85, 0.6);
            color: white;
        }
        main {
            padding: 40px 0;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: var(--border-radius);
            margin-bottom: 60px;
            box-shadow: var(--shadow);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 20px;
        }
        article h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 70, 85, 0.3);
            color: var(--accent);
        }
        article h3 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: #ffd166;
        }
        article h4 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: #8ac6d1;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 70, 85, 0.1), rgba(0, 216, 255, 0.1));
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 40px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .image-container img {
            width: 100%;
            transition: var(--transition);
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 15px;
            background-color: rgba(22, 36, 71, 0.9);
            font-style: italic;
            text-align: center;
            color: #ccc;
        }
        .link-list {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        .link-list h3 {
            margin-top: 0;
            color: var(--accent);
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background-color: rgba(255, 70, 85, 0.1);
            transform: translateX(5px);
        }
        .sidebar-widget {
            background-color: rgba(22, 36, 71, 0.7);
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 70, 85, 0.3);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 25px;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ff2e4a;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffd700;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars span:hover,
        .stars span.active {
            color: #ffa500;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border-radius: var(--border-radius);
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .comment-form button:hover {
            background-color: #00b8e6;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: var(--border-radius);
            margin-top: 30px;
        }
        footer {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        friend-link:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                gap: 10px;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        .ticket-card {
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(0, 216, 255, 0.1));
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 30px 0;
            border: 2px solid transparent;
            transition: var(--transition);
            cursor: pointer;
        }
        .ticket-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .ticket-card h4 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 15px;
        }
        .price {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
            margin: 20px 0;
        }
        .feature-list {
            list-style: none;
        }
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        .feature-list li:before {
            content: "✓";
            color: var(--success);
            margin-right: 10px;
            font-weight: bold;
        }
        .sold-out {
            position: relative;
            opacity: 0.7;
        }
        .sold-out:after {
            content: "SOLD OUT";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background-color: var(--primary);
            color: white;
            padding: 10px 30px;
            font-weight: 900;
            font-size: 2rem;
            border-radius: 10px;
            opacity: 0.9;
        }
