        :root {
            --primary-color: #ff4d4d;
            --secondary-color: #1a1a1a;
            --text-color: #ffffff;
            --accent-color: #ffcc00;
            --vip-color: #28a745;
        }
        .btn {
            border-radius: 0 !important;
        }
        body {
            background-color: #000;
            color: var(--text-color);
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(0, 0, 0, 0.9) !important;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.95) !important;
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .navbar-brand, .navbar-nav .nav-link {
            color: var(--text-color) !important;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .navbar-toggler {
            border: none;
            outline: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .content-section {
            /*padding: 100px 0;*/
            position: relative;
        }
        .section-title {
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background-color: var(--primary-color);
        }
        .event-card {
            background-color: var(--secondary-color);
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 77, 77, 0.3);
        }
        .event-img-container {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .event-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-card:hover .event-img-container img {
            transform: scale(1.1);
        }
        .event-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
        }
        .event-content {
            padding: 25px;
        }
        .event-title {
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        .event-card:hover .event-title {
            color: var(--primary-color);
        }
        .event-info {
            color: #ccc;
            margin-bottom: 20px;
        }
        .event-price {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #ff3333;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
        }
        /* Footer */
        .footer {
            background-color: #111;
            padding: 80px 0 0;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 20px;
        }
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--text-color);
        }
        .footer-links h5::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .footer-map {
            margin-top: 10px;
            border: 2px solid #333;
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
        }
        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        .footer-bottom {
            background-color: #000;
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid #333;
        }
        .footer-bottom p {
            color: #ccc;
        }
        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .event-img-container {
                height: 200px;
            }
            .footer-map {
                height: 180px;
            }
        }
        @media (max-width: 768px) {
            .event-content {
                padding: 20px;
            }
            .footer-map {
                height: 160px;
            }
        }