
        .form-text {
            color: white !important;
        }
        .btn {
            border-radius: 0 !important;
        }
        .reset{
            font-size: .75rem !important;
            margin-top: -15px;
            font-weight: bold !important;
            padding: 0px 20;
            /*background-color: red;*/
            /*color: white;*/
            /*border: 2px solid white;*/
            border-radius: 50px !important;
        }
        body {
            background-color: #000;
            color: #ffffff;
            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: #ffffff !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: #ff4d4d;
            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: #ff4d4d;
        }
        .modal-content {
            background-color: black;
            border: none;
        }
        .modal-header {
            border-bottom: 1px solid #333;
        }
        .modal-footer {
            border-top: 1px solid #333;
        }
        .form-control, .form-select {
            background-color: #333;
            border: 1px solid #444;
            color: white;
        }
        .form-control::placeholder,
        .form-select::placeholder {
            color: #b2b2b2 !important;
        }
        .form-control:focus, .form-select:focus {
            background-color: #333;
            border-color: #ff4d4d;
            box-shadow: 0 0 0 0.25rem rgba(255, 77, 77, 0.25);
            color: white;
        }
        .seat-selection-container {
            background-color: #222;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 0px;
            max-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }
        .floor {
            /*display: flex;*/
            /*flex-direction: column;*/
            /*align-items: center;*/
            /*margin-bottom: 15px;*/
            /*max-width: 600px;*/
            width: 100%;
            overflow-x: scroll;
            /*background-color: red !important;*/
        }
    
        .section {
            display: flex;
            flex-direction: column;
            min-width: 150px;
            flex: 0 0 auto;
        }
        #section-a, #section-a2 {
            align-items: flex-start;
        }
        #section-b, #section-b2 {
            align-items: center;
        }
        #section-c, #section-c2 {
            align-items: flex-end;
        }
        .section h6 {
            text-align: center;
            width: 100%;
        }
        .seat-row {
            display: flex;
            justify-content: center;
            margin: 2px 0;
        }
        .seat-layout{
          min-width: 1320px;
        }
        .seat {
            width: 25px;
            height: 25px;
            margin: 1px;
            line-height: 20px;
            border-radius: 4px;
            background-color: #fff;
            color: white;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid #444;
            font-size: 10px;
            font-weight: bold;
        }
        .seat:hover {
            transform: scale(1.1);
            border-color: white;
        }
        .cat_one{
          background-color: #944dff !important;
        }
        .cat_two{
          background-color: #1a8cff !important;
        }
        .cat_three{
          background-color: #5353c6 !important;
        }
        .cat_four{
          background-color: #e60073 !important;
        }
        .seat.selected {
            background-color: green !important;
            border-color: green !important;
            color: #fff;
        }
        /*.seat.open {
            background-color: #333;
            border-color: var(--accent-color);
            color: #2d3436;
        }*/
        .seat.confirmed {
            background-color: #fff !important;
            border-color: #fff;
            color: #333;
            -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        outline: 0;
        }
        .seat.confirmed:hover{
            transform: none !important;
              -webkit-user-select: none !important; /* Safari */
              -ms-user-select: none !important; /* IE 10 and IE 11 */
              user-select: none !important; /* Standard syntax */
        }
        .seat.hold {
            background-color: #e6e600 !important;
            border-color: #e6e600;
            color: #fff;-webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            outline: 0;
        }
        .seat.hold:hover{
            transform: none !important;
              -webkit-user-select: none !important; /* Safari */
              -ms-user-select: none !important; /* IE 10 and IE 11 */
              user-select: none !important; /* Standard syntax */
        }
        .seat-screen {
            width: 100%;
            /*height: 25px;*/
            background-color: #555;
            margin: 15px auto;
            text-align: center;
            line-height: 25px;
            color: white;
            border-radius: 5px;
            font-weight: normal;
            font-size: 14px;
            letter-spacing: 5rem;
        }
        .seat-legend .seat {
            width: 15px;
            height: 15px;
            line-height: 15px;
            font-size: 0.6rem;
        }
        .seat-info {
            background-color: #2d2d2d;
        }
        .btn-custom {
            /*background-color: #ff4d4d;*/
            background-color: #bfff4d;
            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);
        }
        .ticket-confirmation {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid #333;
        }
        .ticket-confirmation::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            background: linear-gradient(to bottom, #ff4d4d, #ffcc00);
        }
        .payment-instructions {
            background-color: #1a1a1a;
            border-left: 4px solid #ff4d4d;
            padding: 1rem;
            margin-top: 1rem;
            border: 1px solid #333;
        }
        .confirmation-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080?text=Confirmation+Background') no-repeat center center;
            background-size: cover;
            padding: 80px 0;
            position: relative;
        }
        .confirmation-card {
            background-color: rgba(30, 30, 30, 0.9);
            padding: 40px;
            border-left: 5px solid #ff4d4d;
        }
        /* Footer */
        .footer {
            background-color: #111;
            padding: 80px 0 0;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ff4d4d;
        }
        
        .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: #ff4d4d;
            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;
        }
        
        .social-icons a:hover {
            background-color: #ff4d4d;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            background-color: #000;
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid #333;
        }
        @media (max-width: 1200px) {
            .seat {
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 10px;
                margin: 1px;
            }
            .section {
                min-width: 140px;
            }
            .seat-screen {
                height: 20px;
                line-height: 20px;
                font-size: 12px;
            }
            .seat-layout{
                min-width:1320px;
        }
        @media (max-width: 992px) {
            .seat {
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 10px;
                margin: 1px;
            }
            .section {
                min-width: 130px;
            }
            .floor-wrapper {
                gap: 8px;
            }
            .seat-legend .seat {
                width: 12px;
                height: 12px;
                line-height: 12px;
                font-size: 0.5rem;
            }
            .seat-layout{
                min-width:1320px;
        }
        @media (max-width: 768px) {
            .seat {
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 10px;
                margin: 1px;
            }
            .section {
                min-width: 120px;
            }
            .floor-wrapper {
                gap: 6px;
            }
            .seat-selection-container {
                padding: 0px;
            }
            .seat-screen {
                height: 18px;
                line-height: 18px;
                font-size: 10px;
            }
            .seat-layout{
                min-width:1320px;
        }
        @media (max-width: 576px) {
            .seat {
                width: 25px;
                height: 25px;
                line-height: 25px;
                font-size: 10px;
                margin: 2px;
            }
            .section {
                min-width: 100px;
            }
            .floor-wrapper {
                gap: 4px;
                flex-wrap: nowrap;
            }
            .seat-selection-container {
                padding: 0px;
                overflow-x: auto;
            }
            .seat-screen {
                height: 15px;
                line-height: 15px;
                font-size: 8px;
            }
            .seat-legend .seat {
                width: 10px;
                height: 10px;
                line-height: 10px;
                font-size: 0.4rem;
            }
            .seat-layout{
                min-width:1320px;
        }