@font-face {
    font-family: 'Noto Sans Lao';
    src: url('../fonts/NotoSansLao-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Lao';
    src: url('../fonts/NotoSansLao-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    /* Backgrounds */
    --bg-primary: #0F1829;
    --bg-secondary: #112332;

    /* Border */
    --border-light: #FFFFFF;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-description: #EAEAEA;
    --text-placeholder: #112332;

    /* Utility Colors */
    --color-white: #FFFFFF;

    /* Success */
    --success-400: #4ADE80;
    --success-50: #F0FDF5;

    /* Danger */
    --danger-400: #F87171;
    --danger-50: #FEF2F2;

    /* Warning */
    --warning-400: #FAC215;
    --warning-50: #FEF9E8;

    /* Info */
    --info-400: #609AFA;
    --info-50: #EFF5FF;

    /* Linear Gradient */
    --primary-light: #15D4F1;
    --primary-dark: #0C7A8B;
    --primary-gradient: linear-gradient(to right, var(--primary-light), var(--primary-dark));

    /* Headings */
    --font-h1: 44px;
    --font-h2: 40px;
    --font-h3: 32px;
    --font-h4: 28px;
    --font-h5: 24px;
    --font-h6: 20px;

    /* Paragraphs */
    --font-paragraph-large: 16px;
    --font-paragraph-medium: 14px;
    --font-paragraph-small: 12px;
    --font-paragraph-xsmall: 10px;

    /* UI Text */
    --font-button: 16px;
    --font-title: 20px;
    --font-subtitle-1: 18px;
    --font-subtitle-2: 16px;

    --bg: #0f172a;
    --panel: #0b1220;
    --ink: #e7eef7;
    --muted: #9fb0c2;
    --line: #223243;
    --cyan: #22d3ee;
    --cyan2: #0ea5b7;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Lao', sans-serif;
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

body {
    background: var(--bg-primary);
}

h1 {
    font-size: var(--font-h1);
}

h2 {
    font-size: var(--font-h2);
}

h3 {
    font-size: var(--font-h3);
}

h4 {
    font-size: var(--font-h4);
}

h5 {
    font-size: var(--font-h5);
}

h6 {
    font-size: var(--font-h6);
}

.navbar {
    padding: 8px 200px;
    height: 80px;
    background: #0F1829;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.menu-right {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 0;
    list-style: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navbar-logo img {
    width: 155px;
    height: 52px;
}

.nav-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 10px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    color: #7E848D;
    font-weight: 700;
}


.nav-item a:hover {
    font-family: 'Noto Sans Lao';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-item.active a {
    font-family: 'Noto Sans Lao';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.nav-item.active::after {
    width: 100%;
}

.nav-item::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    margin-top: 6px;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.search-form {
    display: flex;
}

.search-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 50px;
    width: 36px;
    z-index: 100;
}

.search-input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 35px;
    gap: 8px;
    width: 300px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    flex: none;
    order: 0;
    flex-grow: 0;
    font-size: 14px;
}


.search-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 78px;
    height: 40px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 80px;
    flex: none;
    order: 1px solid linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    flex-grow: 0;
    position: absolute;
    right: 4px;
    top: 4px;
    border: 1px solid transparent;
    color: #FFFFFF;
}

.menu-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.lang-content {
    display: flex;
    gap: 8px;
}

.lang-content a.active {
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: bold;
}

.lang-content a {
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
}

.loging-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 107px;
    height: 48px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 80px;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    /* font-weight: bold; */
}

.banner-section .carousel,
.banner-section .carousel-inner,
.banner-section .carousel-item,
.banner-section .carousel-item img {
    height: 360px;
}

.banner-section .carousel-item img {
    object-fit: cover;
}


.carousel-control-prev-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15 5l-6 7l6 7'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m9 5l6 7l-6 7'/%3E%3C/svg%3E");
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.section_space {
    padding-top: 30px;
}

.ticket-tab .nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ticket-tab .nav-tabs button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    width: 190px;
    height: 40px;
    border-radius: 0;
    border-width: 0;
    color: #FFFFFF;
}

.ticket-tab .nav-tabs button:hover,
.ticket-tab .nav-tabs button:focus,
.ticket-tab .nav-tabs button:focus-visible,
.ticket-tab .nav-tabs button:focus-within,
.ticket-tab .nav-tabs button.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    width: 190px;
    height: 40px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 8px 8px 0px 0px;
    color: #FFFFFF;
    border: 2px;
}

.ticket_wrapper {
    /* Frame 1597880091 */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;

    width: 1328px;
    height: 445px;


    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;

}

.td {


    /* Button */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;

    position: absolute;
    width: 40px;
    height: 40px;
    left: 80px;
    top: 320px;

    /* Border */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.event-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start;
    padding: 20px;
    background: transparent;
}

.card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    width: 200px;
    color: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 0;

}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-content h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-content .date {
    font-size: 14px;
    color: #15D4F1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content .date img {
    height: 16px;
    width: 16px;
}

.ticket-btn {
    position: relative;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    z-index: 1;
    border: none;
    overflow: hidden;
    background: linear-gradient(90deg, #0C7A8B, #15D4F1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
    align-items: center;
    text-decoration: none;
}

.ticket-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    /* border thickness */
    border-radius: inherit;
    background: linear-gradient(90deg, #0C7A8B, #15D4F1);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.ticket-btn:hover {
    background: linear-gradient(90deg, #0C7A8B 0%, #15D4F1 100%);
    border: transparent;
    color: #FFFFFF;
    -webkit-text-fill-color: white;
    -webkit-background-clip: unset;
    text-decoration: none;

}

.ticket-btn svg {
    height: 24px;
    width: 24px;
}

.ticket-btn svg path {
    fill: #15D4F1;
}

.ticket-btn:hover svg path {
    fill: #FFFFFF;
}

.lnc-footer {
    background-color: #112332;
    background-image: url('../images/footer/footer-background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    padding: 40px 0 0;
    position: relative;
    z-index: 1;

}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 220px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #15D4F1;
}

.logo-text span {
    color: #0C7A8B;
}

.sub-logo {
    font-size: 14px;
    margin-bottom: 20px !important;
    color: #ccc;
}

.footer-section p {
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.footer-section p a {
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.6;
    text-decoration: none;
    color: #FFFFFF;
    display: flex;
    align-items: flex-start;
}

.footer-section p img {
    height: 18px;
    width: 18px;
}

.footer-section p span {
    padding-left: 8px;
    font-size: inherit;
}

.footer-section i {
    margin-right: 8px;
    color: #15D4F1;
}

.map-img {
    width: 100%;
    border-radius: 8px;
}

.payments img,
.downloads img {
    height: 30px;
    margin: 5px 5px 10px 0;
}

.downloads {
    display: flex;
    flex-direction: column;
}

.social-icons a {
    text-decoration: none;
    margin-right: 12px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
}

.subscribe-form {
    margin-top: 15px;
}

.subscribe-form input {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    margin-right: 5px;
    height: 48px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.subscribe-form input:focus {
    outline: 0;
    box-shadow: none;
}

.subscribe-form button {
    padding: 10px 15px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border: none;
    border-radius: 80px;
    color: white;
    cursor: pointer;
    height: 48px;
}

.footer-bottom {
    text-align: center;
    color: white;
    font-size: 14px;
    padding: 10px;
    margin-top: 30px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);

}

.footer-logo {
    margin-bottom: 25px;
}

.sub-logo span {
    font-weight: bold;
    font-size: 18px !important;
}

.details-section .banner-top {
    height: 230px;
    background-image: url('../images/details/background.svg');

}

.details-section .banner-bottom {}

.details-section .breadcrumb {
    padding-top: 20px;
    padding-left: 100px;
}

.details-section .breadcrumb-link a {
    color: #FFFFFF;
    text-decoration: none;
    color: #7E848D;
    font-weight: 400;
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
}

.details-section .breadcrumb-link span {
    color: #FFFFFF;
    margin-left: 5px;
}

.page-title h5 {
    padding-left: 100px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.banner-bottom {
    background-color: #112332;
}

.banner-bottom .bottom-content {
    display: flex;
    gap: 10px;
    padding-left: 100px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.banner-bottom .bottom-content .content-one {
    width: 30%;
}

.banner-bottom .bottom-content .content-two {
    width: 25%;
    padding-left: 30px;
}

.banner-bottom .bottom-content .content-three {
    width: 25%;
    padding-left: 30px;
}

.banner-bottom .bottom-content .content-four {
    width: 20%;
    padding-left: 30px;
}

.banner-bottom .bottom-content .content-list {
    display: flex;
    align-items: start;
    gap: 10px;
    /* padding-bottom: 10px; */
}

.banner-bottom .bottom-content .content-list .text .title {
    color: #FFFFFF;
    font-size: 14px;
}

.banner-bottom .bottom-content .content-list .text .subtitle {
    color: #FFFFFF;
    font-size: 16px;
}

#ticketCarousel {
    position: absolute;
    top: -100%;
}

#ticketCarousel .carousel-control-prev {
    position: absolute;
    left: -47px;
}

#ticketCarousel .carousel-control-next {
    position: absolute;
    right: -47px;
}

#ticketCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.page-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 40%;
    margin-top: 50px;
}

.page-header .subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.page-header .title {
    font-size: 14px;
    color: #fff;
}

.details-ticket-section .details-content {
    padding-left: 100px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.details-content .order-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.details-content-title {
    border-bottom: 2px solid #112332;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
}


.details-content-title::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
    background-color: #15D4F1;
    border-radius: 2px;
}

.details-content .images {
    display: flex;
    gap: 10px;
}

.details-content .images img {
    width: 25%;
}

.details-content .payment-section {
    margin-top: 30px;
}

.details-list ol {
    padding: 6px;
}

.details-list ol li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    background-color: #112332;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.payment-icons img {
    width: 25px;
    height: 25px;
}

.order-button .btn-order {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    width: 139px;
    height: 48px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 40px;
    color: #FFFFFF;
    border: 0;
    text-decoration: none;
}

.universel-banner-top {
    height: 110px !important;
}

.step-title {
    color: #FFFFFF;
}

.step-number {
    font-weight: bold;
    font-size: 18px;
    line-height: 120%;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.step-description {
    color: #FFFFFF;
}


.universal-banner-bottom {
    display: flex;
}

.banner-bottom-left {
    width: 35%;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);


}

.banner-bottom-right {
    width: 65%;
}

.bottom-left-content {
    padding-left: 215px !important;
}

.banner-bottom-right .content-heading .title {
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 10px;
}

.banner-bottom-right .content-heading .subtitle {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
}

.banner-bottom-right .content-heading {
    margin-bottom: 50px;
}

.banner-bottom-right .image-content {
    width: 17%;
}

.banner-bottom-right .details-content {
    width: 83%;
}

.banner-bottom-right .content-list {
    align-items: center !important;
}

.banner-bottom-right .image-content img {
    width: 140px;
    height: 160px;
    border-radius: 8px;
}

.banner-bottom-right .content-items {
    display: flex;
    gap: 5px;
}

.banner-bottom-right .content-list {
    width: 33.33%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

.banner-bottom-right .bottom-content {
    padding-left: 60px !important;
}

.breadcrumb-link img {
    margin-right: 5px;
}

.banner-boarder {
    background: rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.cart-content {
    display: flex;
}

.cart-content .details-content {
    width: 50%;
}

.details-content-right {
    padding-left: 50px !important;
}

.ticket-option {
    padding: 8px 0;
}

.radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    cursor: pointer;
}

.radio input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    margin-right: 8px;
    position: relative;
}

.radio input[type="radio"]:checked {
    border-color: #22d3ee;
}

.radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
}

.label-text {
    flex: 1;
    font-size: 14px;
    color: #EAEAEA;
    font-weight: 400;
}

.status {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
}


.shell {
    width: 100%;
}

/* Tabs (nav-pills) */
.tabs-rail {
    background: #112332;
    border: 1px solid #FFFFFF1A;
    border-radius: 40px;
    padding: 4px;
    width: 100%;
}

.tabs-rail .nav-link {
    color: var(--muted);
    font-weight: 700;
    border-radius: 999px
}

.tabs-rail .nav-link {
    color: #EAEAEA;
    font-size: 16px;
    font-weight: 400;
}

.tabs-rail .nav-link.active {
    background: linear-gradient(90deg, var(--cyan), var(--cyan2));
    color: #EAEAEA;
    font-size: 16px;
    font-weight: 400;
}

/* Ticket list */
.ticket-box {
    border-radius: 12px;
    overflow: hidden
}

.ticket-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line)
}

.ticket-row .title {
    font-weight: 700;
    font-size: 15px;
    color: #EAEAEA;
}

.price {
    color: var(--cyan);
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px
}

.ico {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    /* background: #cbd5e1; */
    display: inline-block;
    position: relative;
    top: 4px
}

.ico-adult::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%
}

.ico-adult::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 12px;
    width: 14px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 6px 6px 0 0
}

.ico-child {
    background: #94a3b8
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 32 32%22><defs><linearGradient id=%22g%22 x1=%220%22 y1=%220%22 x2=%221%22 y2=%221%22><stop stop-color=%22%23ffd7a6%22/><stop offset=%221%22 stop-color=%22%23ff8da1%22/></linearGradient></defs><rect width=%2232%22 height=%2232%22 rx=%2216%22 fill=%22url(%23g)%22/></svg>') center/cover no-repeat;
    margin-left: 4px
}

/* Counter controls */
.qty-control {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    border: 1px solid #FFFFFF1A;
    border-radius: 20px;
    padding: 5px;
}

.circle {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #7E848D;
    background: #7E848D;
    color: #212529;
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
}

.circle.plus {
    background: var(--cyan);
    color: #032631;
    border-color: var(--cyan)
}

.qty {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    color: #dbe8f5;
    font-size: 12px;
}

/* CTA */
.btn-cta {
    background: linear-gradient(90deg, var(--cyan), var(--cyan2));
    color: #FFFFFF;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    padding: .6rem 1.2rem
}

.btn-cta:hover {
    color: #FFFFFF;
}

.btn-cta:active {
    color: #FFFFFF !important;
    background: linear-gradient(90deg, var(--cyan), var(--cyan2)) !important;
}

.user-btn {
    font-size: 16px;
    font-weight: 400 !important;
}

/* Placeholder content */
.placeholder-pane {
    padding: 1rem;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center
}

.shell .nav-pills {
    display: flex;
}

.shell .nav-item-pill {
    width: 33.33%;
}

.shell .nav-item-pill button {
    width: 100%;
}

.checkout-content {
    padding-left: 39% !important;
}

.checkout-left .chip {
    font-weight: 400;
    font-size: 14px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.checkout-left .chip img {
    height: 16px;
    width: 16px;
}

.checkout-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.checkout-list li {
    color: #EAEAEA;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.checkout-left-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #EAEAEA;
    margin-top: 15px;
}

.checkout-list .price {
    font-weight: 400;
}

/* Labels & controls */
.checkout-form .form-label {
    color: #FFFFFF;
    font-size: 16px;
}

.checkout-form .form-control,
.checkout-form .form-select {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #223243;
    border-radius: 8px;
    font-size: 16px;
    height: 48px;
}

.checkout-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.checkout-form .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
}

/* Dropdown options styling */
.checkout-form .form-select option {
    background-color: #0d1b2a;
    color: #fff;
}

/* Option hover effect */
.checkout-form .form-select option:hover,
.checkout-form .form-select option:focus,
.checkout-form .form-select option:checked {
    background-color: #0dcaf0;
    color: #000;
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    background: transparent;
    box-shadow: none !important;
    outline: 0;
    color: #FFFFFF;
}

.checkout-form .form-control::placeholder {
    color: #7E848D;
    font-size: 16px;
    font-weight: 400;
}

.checkout-form .form-text {
    color: #9fb0c2
}

.checkout-form .input-group-text {
    background: #0b1526;
    color: #b7c8da;
    border: 1px solid #223243
}

.checkout-form .req .form-label::after {
    content: " *";
    color: #ff9898;
    font-weight: 700
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    border-color: var(--cyan2);
    box-shadow: 0 0 0 .2rem rgba(34, 211, 238, .2);
}

/* Gender pills (radio as buttons) */
.checkout-form .btn-toggle {
    color: #cfe0f3;
    border: 1px solid #223243;
    background: #0b1526;
    border-radius: 999px;
    padding: .35rem 1rem;
    font-weight: 600;
}

.checkout-form .btn-check:checked+.btn-toggle {
    color: #032631;
    background: linear-gradient(90deg, #22d3ee, #0ea5b7);
    border-color: transparent;
}

/* Submit */
.checkout-form .btn-cta {
    background: linear-gradient(90deg, #22d3ee, #0ea5b7);
    color: #FFFFFF;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    padding: .6rem 1.2rem;
}

.checkout-form .req {
    color: #ff9a9a;
}

.checkout-form .radios {
    display: flex;
    align-items: center;
    gap: 18px
}

/* radio container */
.checkout-form .r {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    position: relative
}

/* hide native but keep it accessible */
.checkout-form .r input {
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* custom circle */
.checkout-form .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #2a3445;
    background: transparent;
    display: inline-block;
    position: relative;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

/* inner fill + cyan ring when checked */
.checkout-form .r input:checked+.dot {
    border-color: #22d3ee;
    box-shadow:
        inset 0 0 0 3px rgba(34, 211, 238, .18),
        /* subtle inner glow */
        0 0 0 1px rgba(34, 211, 238, .35);
    /* thin outer edge */
}

.checkout-form .r input:checked+.dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #22d3ee;
}

/* keyboard focus */
.checkout-form .r input:focus-visible+.dot {
    outline: 2px solid rgba(34, 211, 238, .45);
    outline-offset: 3px;
}

/* label text */
.checkout-form .txt {
    color: #9fb0c2;
    font-size: .92rem
}

.checkout-form input[type="date"] {
    appearance: auto;
    -webkit-appearance: auto;
}

.checkout-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* makes it light on dark bg (Chrome/Edge) */
    opacity: .8;
}

.auth-nav {
    background-color: #112332;
}

.auth-nav .nav-menu {
    height: 56px;
}

.auth-nav .back-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.auth-content {
    display: flex;
    gap: 85px;
    padding: 50px;
}

.auth-section {
    background-color: #0F1829;
    background-image: url('../images/footer/footer-background-2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.auth-left .banner-image img {
    width: 100%;
}

.auth-left {
    width: 50%;
}

.auth-right {
    width: 50%;
}

.auth-footer .footer-bottom {
    margin-top: 0 !important;
}

.auth-logo {
    margin-bottom: 29px;
    display: flex;
    justify-content: center;
}

.auth-tilte {
    font-weight: bold;
    margin-bottom: 20px;
}

.auth-section {
    font-weight: 400;
    font-size: 16px;
}

.auth-content .btn-cta {
    font-weight: 400;
}

.remember-content {
    display: flex;
    justify-content: space-between;
}

.forget-password {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #15D4F1;
    text-decoration: none;
}

.forget-password:hover {
    text-decoration: underline;
}

.remember-content .form-check-input {
    background-color: transparent;
    border: 1px solid #223243;
}

.remember-content .form-check-input:focus {
    border-color: #223243;
    box-shadow: none;
    outline: 0;
}

.remember-content .form-check-label {
    color: #EAEAEA;
    font-size: 16px;
    font-weight: 400;
}

.auth-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.auth-bottom p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #7E848D;
}

.auth-bottom a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration-line: underline;
    color: #15D4F1;
}

.term-condition-content {
    gap: 0;
    padding: 0;
}

.term-condition-content .auth-logo {
    justify-content: flex-start;
}

.term-condition-content .auth-right {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
}

.term-and-condition-title {
    margin-bottom: 50px;
}

.term-and-condition-title h5 {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}

.auth-nav-title h5 {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
}

.auth-nav-title {
    display: none;
}

.term-condition .terms {
    padding: 0;
    margin-bottom: 20px;
}

.term-condition .terms li {
    padding: 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

.term-condition .terms li .head {
    font-weight: bold;
    margin-top: 30px;
}

.term-condition .terms li ul {
    padding-left: 10px;
    list-style: none;
}

.terms ul li::before {
    content: "";
    position: absolute;
    left: -14px;
    top: .63em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF
}

.register-title {
    margin-left: -10px;
    margin-bottom: 30px;
    font-size: 24px;
}

.auth-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    margin-left: -8px;
}

.auth-content .checkout-form {
    margin-left: -8px;
}

/* toggle button */
.pwd-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    background: none;
    cursor: pointer;
}

/* eye outline */
.pwd-toggle .eye {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 14px;
    border: 1px solid #FFFFFF;
    border-radius: 20px / 12px;
}

.pwd-toggle .eye::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 50%;
}

/* diagonal slash (visible when hidden, fades out when revealed) */
.pwd-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 1px;
    background: #FFFFFF;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(-30deg);
    opacity: 1;
    transition: opacity .18s ease;
}

.pwd-toggle.revealed::after {
    opacity: 0;
}

/* hide slash when showing */
.pwd-toggle.revealed .eye {
    border-color: #FFFFFF;
}

.pwd-toggle.revealed .eye::before {
    background: #FFFFFF;
}

.segmentedInput-parent {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.segmentedInput-parent input {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #223243;
    border-radius: 8px;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 24px;
}

.segmentedInput-parent input:focus-visible {
    border: 1px solid #223243 !important;
}

.otp-subtitle {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.resend-otp-link {
    color: #15D4F1;
}

.register-phone {
    background: rgba(255, 255, 255, 0.1) !important;
}

.payment-radio {
    justify-content: space-between;
    margin-top: 20px;
}

.payment-radio .image img {
    width: 15px;
    height: 15px;
}

.mobile-banner {
    display: none;
}

.mobile-back {
    display: none;
}

.ticket-btn svg {
    height: 24px;
    width: 24px;
}

.advertisment-content {
    display: flex;
    gap: 50px;
}

.promotion-content,
.banner-content {
    width: 50%;
}

.advertisment-content .details-content-title {
    margin-left: 10px;
    margin-bottom: 15px;
}

.advertisment-banner {
    height: 300px;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);
    border-radius: 8px;

}

.advertisment-section {
    margin-bottom: 50px;
}

.mobile-nav {
    display: none;
}

.details-mobile-nav {
    display: none;
}

.cart-button-content {
    margin-bottom: 15px;
}

.event-title {
    font-size: 16px;
    color: #7E848D;
}

.event-subtitle {
    font-size: 16px;
    color: #FFFFFF;
}

.event-details {
    padding: 30px 0;
}

.event-details .event-detail-items {
    margin-bottom: 10px;
}

.event-details .event-detail-items:last-of-type {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.event-details .event-detail-items:last-of-type .event-subtitle {
    color: #FAC215;
}

.qr-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.qr-subtitle {
    font-size: 16px;
    color: #FFFFFF;
}

.qr-subtitle span {
    font-size: 16px;
    color: #15D4F1;
}

.card-primary {
    padding: 20px;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);
    border-radius: 8px;
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.qr-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.qr-info p {
    font-size: 16px;
    color: #FFFFFF;
}

.payment-info-card .title {
    font-size: 16px;
    color: #FFFFFF;
}

.payment-info-card .payment-info-item {
    display: flex;
    justify-content: space-between;
}

.payment-info-card .payment-info-item .title {
    font-size: 16px;
    color: #7E848D;
}

.payment-info-card .payment-info-item .subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #15D4F1;
}

.success-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.success-content .success-text .title {
    color: #4ADE80;
    font-weight: bold;
    font-size: 20px;
}

.success-content .success-text .date {
    color: #FFFFFF;
    font-size: 14px;
}

.border {
    margin-top: 30px;
    border: 1px solid #112332 !important;
}

.qr-info .description ul {
    list-style: none;
}

.qr-info .description ul li {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.qr-info .description ul li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 31%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.qr-info .description .title {
    font-size: 16px;
    color: #FAC215;
}

.user-section {
    padding: 50px 0;
}

.user-side-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.user-sidebar .user-profile {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.user-sidebar .user-profile .user-avatar {
    height: 48px;
    width: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.user-sidebar .user-profile .user-avatar img {
    width: 100%;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-left .user-profile {
    display: flex;
    gap: 15px;
    align-items: center;

}

.menu-left .user-profile .user-avatar {
    height: 48px;
    width: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.menu-left .user-profile .user-avatar img {
    width: 100%;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-left .user-info .title {
    font-size: 16px;
    margin-bottom: 0;
}

.menu-left .user-info .subtitle {
    font-size: 14px;
    margin-bottom: 0;
}

.user-info .title {
    font-size: 16px;
    color: #FFFFFF;
}

.user-info .subtitle {
    font-size: 12px;
    color: #7E848D;
    margin: 0;
}

.user-side-link li {
    margin-bottom: 25px;
}

.user-side-link li a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #FFFFFF;
    display: flex;
    gap: 15px;
}

.user-side-link li a svg {
    height: 24px;
    width: 24px;
}

.user-side-link li a svg path {
    fill: #15D4F1;
}

.user-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 120%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.user-form-content {
    padding-top: 50px;
}

.change-btn {
    background: #0f1722;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #e6f3ff;
    border-radius: 999px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px auto 2px;
    cursor: pointer;
    transition: transform .08s ease, background .12s ease, border-color .12s ease;
}

.change-btn:hover {
    background: #132235;
    border-color: rgba(92, 200, 255, 0.45);
}

.change-btn:active {
    transform: translateY(1px);
    background: #102033;
}

.avatar-input {
    visibility: hidden;
}

.user-profile-content {
    padding: 20px 0;
}

.avatar-button {
    display: flex;
    justify-content: center;
    align-items: center;
}


.user-profile-content .avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.avatar-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
}


.user-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    outline: 1px solid rgba(92, 200, 255, 0.08);
    transition: transform 140ms ease;
    position: relative;
    background: #0b1017;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.user-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.user-profile-avatar:hover {
    transform: translateY(-1px);
}

.profile-auth-nav {
    display: none;
}

.user-content-title {
    padding-left: 8px;
}

.user-content-title::before {
    left: 0;
}

.user-forget-password {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.text-success {
    color: #4ADE80;
}

.qr-card-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-bottom: 10px;
}

.qr-card-banner .banner-logo {
    width: 140px;
}

.qr-card-heading h5 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
}

.qr-card-heading .subtitle span {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.qr-card-heading {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 10px 0;
}

.qr-code-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30.1176px;
    gap: 18.82px;
    width: 320px;
    height: 320px;
    background: linear-gradient(90deg, rgba(21, 212, 241, 0.08) 0%, rgba(12, 122, 139, 0.08) 100%);
    box-shadow: 0px 1px 30px rgba(21, 212, 241, 0.1);
    border-radius: 9.14286px;
    border: 1px solid #15D4F1;
    margin: 10px 0;
}

.qr-code-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    gap: 8px;
    width: 221px;
    height: 40px;
    color: #FFFFFF;
    border-radius: 80px;
    border: 2px solid #0C7A8B;
    background: transparent;
}

.qr-card-footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.success-bottom-content {
    padding: 20px 0;
    border-top: 2px solid #112332;
    margin-top: 20px;
}

.success-bottom-content .details-content-title {
    font-weight: bold;
}

.success-bottom-content .checkout-list .text p:last-of-type {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.view-qr-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 10px;
    margin: 0 auto;
    width: 125px;
    height: 38px;
    border-radius: 40px;
    text-decoration: none;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #0C7A8B;
}

.user-banner-bottom {
    background: transparent;
}

.user-banner-bottom .banner-bottom-right .bottom-content {
    padding-left: 0 !important;
    gap: 20px !important;
    padding-bottom: 50px;
    padding-top: 50px;
}

.user-banner-bottom .banner-bottom-right {
    width: 100%;
}

.user-banner-bottom .banner-bottom-right .content-heading {
    margin-bottom: 30px;
}

.banner-bottom-right .content-list:first-of-type {
    border-left: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
}

.breadcrumb a {
    text-decoration: none;
    color: #9ca3af;
    transition: color 0.2s ease;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #e5e7eb;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #6b7280;
}

.user-qr-code-image {
    width: 280px;
    height: 280px;
}

.about-section {
    padding: 30px 0;
}

.about-heading-title h5 {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;

}

.about-heading-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-address .address-list {
    list-style: none;
    padding: 15px 0px;
    margin-bottom: 0;
}

.about-address .address-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.about-address .address-list li a {
    text-decoration: none;
    color: #FFFFFF;
}

.about-address .address-list li img {
    height: 20px;
    width: 20px;
}

.address-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}

.about-location iframe {
    padding: 20px 0;
    border-radius: 10px;
}

.about-payment .payment-section {
    padding-bottom: 20px;
}

.about-contact .payment-icons {
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.about-form {
    margin-top: 20px;
}

.about-form input {
    background-color: transparent;
    color: #7E848D;
    padding: 10px 12px;
    gap: 8px;
    border: 1px solid #7E848D;
    border-radius: 8px;

}

.about-form input:focus {
    background-color: transparent;
    color: #7E848D;
    padding: 10px 12px;
    gap: 8px;
    border: 1px solid #7E848D;
    border-radius: 8px;
    box-shadow: none;
    outline: 0;
}

.about-form input::placeholder {
    color: #7E848D;
}

.about-submit-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    width: 89px;
    height: 48px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 80px;
    border: 0;
    color: #FFFFFF;
    margin-top: 20px;
}

.about-banner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.about-banner .logo {
    width: 140px;
}

.about-description {
    width: 550px;
    margin: 0 auto;
}

.my-ticket-tab {
    padding-top: 20px;
}

.my-ticket-tab button.active {
    background: transparent !important;
    border: 0 !important;
    color: #0C7A8B !important;
    border-bottom: 2px solid #0C7A8B !important;
}

.my-ticket-tab button:hover {
    background: transparent !important;
    border: 0 !important;
    color: #0C7A8B !important;
    border-bottom: 2px solid #0C7A8B !important;

}

.my-ticket-event-cards {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}

.my-ticket-event-cards .card {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding-bottom: 15px;
}

.my-ticket-event-cards .card:hover {
    transform: none;
}

.my-ticket-event-cards .card .ticket-image {
    width: 18%;
}

.my-ticket-event-cards .card .ticket-image img {
    object-fit: contain;
    height: 157px;
    width: 100%;
}

.my-ticket-event-cards .card .card-content {
    width: 82%;
}

.my-ticket-event-cards .card-content h3 {
    font-weight: bold;
    margin-bottom: 30px;
}

.my-ticket-event-cards .card-content .text {
    font-size: 14px;
    color: #EAEAEA;
    font-weight: 400;
    margin-bottom: 8px;
}

.my-ticket-event-cards .card-content .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.paid-status {
    color: #4ADE80;
    border: 1px solid #4ADE80;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    height: 25px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unpaid-status {
    color: red;
    border: 1px solid red;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    height: 25px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-ticket-event-cards .card-content .location {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #7E848D;
    font-weight: 400;
    align-items: center;
}

.my-ticket-event-cards .card-content .location img {
    height: 16px;
    width: 16px;
}

.follow-date {
    margin-bottom: 5px !important;
}

.ticket-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    width: 160px;
    height: 40px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 80px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.follow-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 4px;
    border-radius: 80px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    width: 150px;
    height: 40px;
    border: 1px solid #0C7A8B;

}

.follow-card-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.follow-card-buttons img {
    height: 24px;
    width: 24px;
}

.follow-button img {
    width: 16px;
    height: 16px;
}

.follow-outline-button {
    font-weight: 400;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 34px;
}

.organizer-auth-content {
    display: flex;
    justify-content: center;
}

.auth-card {
    background-color: #112332;
    padding: 32px 20px;
    width: 480px;
    height: 417px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;

}

.auth-content-center {
    width: 480px;
}


.auth-card .checkout-form .input-group-text {
    background: transparent;
}

.auth-card .auth-tilte {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 20px;
    padding-left: 3px;

}

.auth-card .auth-tilte::before {
    height: 20px;
    width: 3px;
}

.organizer-auth-footer {
    width: 321px;
    margin: 0 auto;
    padding: 30px 0;
}

.organizer-auth-footer .copyright-text {
    text-align: center;
    color: #7E848D;
    font-size: 12px;
}

.auth-content-center .auth-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.auth-content-center .auth-logo img:first-of-type {
    width: 200px;
}

.auth-content-center .auth-logo img:last-of-type {
    width: 150px;
}

.country-code-select:focus {
    outline: 0;
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 60px 0;
}

.error-image img {
    height: 280px;
    width: 280px;
}

.error-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 120%;
    color: #FFFFFF;
}

.error-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #EAEAEA;
}

.error-back-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    width: 180px;
    height: 48px;
    background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    text-decoration: none;
}

/* --- Layout / trigger --- */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.user-profile:focus {
    outline: 2px solid #5b8cff;
    outline-offset: 2px;
    border-radius: 8px;
}

.user-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info .title {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

.user-info .subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.7;
}

.caret {
    margin-left: 6px;
    opacity: 0.7;
    transition: transform .15s ease;
}

/* --- Menu --- */
.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 180px;
    list-style: none;
    color: #eee;
    display: none;
    z-index: 1000;
    padding: 8px;
    background: #112332;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

}

.user-dropdown.open .user-menu {
    display: block;
}

.user-dropdown.open .caret {
    transform: rotate(180deg);
}

.user-menu li {
    margin: 2px 0;
}

.user-menu a,
.user-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.user-menu a:hover,
.user-menu button:hover,
.user-menu a:focus,
.user-menu button:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.user-dropdown:: {
    border: 0;
    outline: 0;
}

.user-dropdown:focus-visible {
    border: 0;
    outline: 0;
}

.user-dropdown .user-profile {
    outline: 0 !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.user-dropdown .user-profile .user-avatar img {
    height: 100%;
}

.user-avatar img {
    height: 100%;
}

@media only screen and (max-width: 1380px) {
    .menu-right {
        width: 43%;
    }

    .menu-left {
        width: 57%;
    }

    .navbar {
        padding: 8px 0px;
    }
}

@media only screen and (max-width: 1100px) {
    .details-section .breadcrumb {
        padding-top: 8px;
    }

    .checkout-content {
        padding-left: 35% !important;
    }

    .banner-bottom-right .bottom-content {
        padding-left: 30px !important;
    }

    .banner-bottom-right .image-content {
        width: 25%;
    }

    .menu-right {
        width: 43%;
    }

    .main-nav .container {
        margin: 0 10px;
    }

    .menu-right {
        width: 45%;
    }

    .menu-left {
        width: 55%;
    }

    .navbar {
        padding: 8px 0px;
    }

    .search-input {
        width: 250px;
        height: 48px;
        font-size: 14px;
    }

    .navbar-logo img {
        width: 140px;
        height: 45px;
    }

    .loging-button {
        padding: 10px 10px;
        width: 100px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 800px) {

    .user-banner-bottom .banner-bottom-right .image-content {
        width: 40%;
    }

    .cart-content .details-content {
        padding-left: 30px !important;
    }

    .cart-content .details-content:first-of-type {
        width: 40%;
    }

    .cart-content .details-content:last-of-type {
        width: 60%;
    }

    .universal-banner-bottom .bottom-left-content {
        padding-left: 60px !important;
    }

    .universal-banner-bottom .banner-bottom-right {
        width: 75%;
    }

    .banner-bottom-right .image-content {
        width: 25%;
    }

    .checkout-content {
        padding-left: 25% !important;
    }

    .universal-banner-bottom .banner-bottom-right .bottom-content {
        padding-left: 10px !important;
    }

    .universal-banner-bottom .banner-bottom-left {
        width: 25%;
    }

    #ticketCarousel {
        top: -55%;
    }

    .auth-section .auth-content {
        gap: 60px;
        padding: 30px;
    }

    .main-nav {
        padding: 8px 0;
    }

    .navbar-logo img {
        width: 110px;
        height: 30px;
        margin-right: 0 !important;
    }

    .menu-list {
        gap: 20px;
        padding-left: 15px;
    }

    .nav-item a {
        font-size: 14px;
    }

    .nav-item.active a {
        font-size: 14px;
    }

    .menu-right {
        width: 42%;
    }

    .menu-left {
        width: 58%;
        gap: 17px;
    }

    .search-button {
        width: 70px;
        height: 32px;
        font-size: 14px;
    }

    .search-input {
        width: 200px;
        height: 40px;
        font-size: 14px;
    }

    .lang-content {
        gap: 5px;
    }

    .lang-content a.active {
        font-size: 14px;
    }

    .lang-content a {
        font-size: 14px;
    }

    .loging-button {
        width: 96px;
        height: 40px;
        font-size: 14px;
        padding: 10px;
    }

    .ticket-tab .nav-tabs button {
        padding: 8px 10px;
        width: 150px;
        height: 40px;
        font-size: 14px;
    }

    .ticket-tab .nav-tabs button:hover,
    .ticket-tab .nav-tabs button:focus,
    .ticket-tab .nav-tabs button:focus-visible,
    .ticket-tab .nav-tabs button:focus-within,
    .ticket-tab .nav-tabs button.active {
        padding: 8px 10px;
        width: 150px;
        height: 40px;
    }

    .banner-section .carousel,
    .banner-section .carousel-inner,
    .banner-section .carousel-item,
    .banner-section .carousel-item img {
        height: 250px;
    }

    .event-cards {
        padding: 20px 0;
    }

    .search-icon {
        top: 8px;
        left: 7px;
        height: 25px;
        width: 36px;
    }

    .search-icon {
        height: 24px;
        width: 24px;
    }

}

@media only screen and (max-width: 600px) {
    * {
        font-size: 14px;
    }

    .user-dropdown {
        display: none;
    }

    .error-image img {
        height: 200px;
        width: 200px;
    }

    .error-content {
        padding: 90px 0;
    }

    .follow-button {
        font-size: 14px;
        font-weight: 400;
        height: 35px;
        width: 130px;
    }

    .ticket-button {
        width: 160px;
        height: 35px;
        font-size: 14px;
        font-weight: 400;
    }

    .my-ticket-event-cards .card {
        gap: 10px;
    }

    .my-ticket-event-cards .card .ticket-image {
        width: 25%;
    }

    .my-ticket-event-cards .card .card-content {
        width: 75%;
    }

    .my-ticket-event-cards .card-content h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .my-ticket-event-cards .card {
        padding-bottom: 8px;
    }

    .about-description {
        width: 100%;
    }

    .address-title {
        font-size: 16px;
        font-weight: 400 !important;
    }

    .about-heading-title {
        display: none;
    }

    .about-content .breadcrumb {
        display: none;
    }

    .user-banner-bottom .universal-banner-bottom .banner-bottom-right {
        width: 100%;
    }

    .user-banner-bottom .banner-bottom-right .details-content {
        width: 100%;
    }

    .pl-sm-0 {
        padding-left: 0 !important;
    }

    .details-content-title {
        font-size: 16px;
    }

    .success-content .success-text {
        text-align: center;
    }

    .success-content .success-text .title {
        font-size: 18px;
    }

    .success-content .success-text .date {
        font-size: 12px;
    }

    .success-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .success-section {
        padding-top: 100px !important;
    }

    .user-title {
        display: none;
    }

    .profile-auth-nav {
        display: block;
    }

    .qr-details-content {
        padding: 0 !important;
        width: 100% !important;
    }

    .event-subtitle {
        font-size: 14px;
    }

    .event-title {
        font-size: 14px;
    }

    .payment-info-card .title {
        font-size: 14px;
    }

    .payment-info-card .payment-info-item .title {
        font-size: 14px;
        color: #7E848D;
    }

    .payment-info-card .payment-info-item .subtitle {
        font-size: 16px;
    }

    .qr-info p {
        font-size: 14px;
    }

    .checkout-left-title {
        font-size: 14px;
    }

    .payment-radio {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .payment-ticket-section .checkout-content .details-content-title {
        padding-top: 0px;
    }

    .payment-ticket-section .checkout-content .details-content-title::before {
        top: 55%;
    }

    .universal-details-section {
        display: none;
    }

    .details-ticket-section .details-content {
        width: 100%;
        padding-bottom: 0;
    }

    .details-content-right {
        width: 100% !important;
    }

    .details-ticket-section {
        padding-top: 50px;
    }

    .details-content-right {
        padding-left: 33px !important;
    }

    .details-content-right .shell {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .cart-content {
        flex-direction: column;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        bottom: 0;
        background: #112332;
        width: 100%;
        z-index: 10000;
    }

    .mobile-nav ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding: 0;
        margin-bottom: 0;
    }

    .mobile-nav li {
        padding: 10px;
    }

    .mobile-nav li.active {
        border-top: 2px solid #0C7A8B;
    }

    .mobile-nav li.active a span {
        background: linear-gradient(90deg, #15D4F1 0%, #0C7A8B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .mobile-nav li.active a svg path {
        fill: #0C7A8B;
    }

    .mobile-nav ul li a {
        font-size: 12px;
        color: #7E848D;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .mobile-nav ul li a svg {
        height: 24px;
        width: 24px;
    }

    .mobile-nav ul li a svg path {
        fill: #7E848D;
    }

    .mobile-nav ul li a span {
        font-size: 12px;
        color: #7E848D;
    }

    .details-mobile-nav {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 100000;
    }

    .banner-bottom .bottom-content {
        padding-left: 0;
        flex-direction: column;
    }

    .details-section .breadcrumb {
        display: none;
    }

    .page-header {
        padding-left: 0;
        padding-top: 300px;
    }


    .banner-bottom .bottom-content .content-two,
    .banner-bottom .bottom-content .content-three,
    .banner-bottom .bottom-content .content-four {
        width: 100%;
    }

    .details-section .banner-top {
        height: 450px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .banner-bottom .bottom-content .content-list {
        margin-bottom: 15px;
    }

    .details-ticket-section .details-content {
        padding-left: 30px;
    }

    .details-content .order-button {
        position: absolute;
        bottom: -115px;
        width: 86%;
        padding-bottom: 14px;
        border-top: 1px solid #FFFFFF;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .details-content .order-button .ticket-button {
        width: 100%;
    }

    .page-footer {
        display: none;
    }

    .cart-button-content {
        width: 100%;
    }

    .payment-icons {
        margin-bottom: 50px;
    }

    .cart-button-content button {
        width: 100%;
    }

    .ticket-row {
        padding: 10px 0;
        display: flex;
    }

    .ticket-row .left {
        width: 40%;
    }

    .checkout-content {
        padding-left: 4% !important;
    }

    .checkout-content .details-content-title {
        padding-top: 30px;
    }

    .checkout-content .details-content-title::before {
        content: "";
        position: absolute;
        left: -8px;
        top: 76%;
        transform: translateY(-50%);
        width: 2px;
        height: 16px;
        background-color: #15D4F1;
        border-radius: 2px;
    }

    .checkout-content .cart-button-content {
        margin-bottom: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }

    .checkout-content-one {
        display: none;
    }

    .tabs-rail .nav-link {
        font-size: 14px;
        padding: 5px;
    }

    .ticket-row .right {
        width: 60%;
    }

    .order-button .btn-order {
        width: 100%;
    }

    .details-content .images {
        flex-direction: column;
    }

    .details-content .images img {
        width: 100%;
    }

    .page-header .subtitle {
        font-size: 18px;
    }

    #ticketCarousel {
        top: -400px;
        left: 80px;
    }

    .banner-bottom .bottom-content .content-one {
        width: 75%;
    }

    .auth-section .auth-content {
        gap: 60px;
        padding: 30px;
    }

    .main-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .auth-section .auth-content {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .auth-section .auth-content .auth-left {
        width: 100%;
    }

    .auth-section .auth-content .auth-right {
        width: 100%;
    }

    .auth-footer {
        display: none;
    }

    .auth-section .form-control {
        height: 48px;
        font-size: 14px;
    }

    .remember-content .form-check-label {
        font-size: 14px;
    }

    .forget-password {
        font-size: 14px;
    }

    .auth-bottom p {
        font-size: 14px;
    }

    .auth-bottom a {
        font-size: 14px;
    }

    .remember-content {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .auth-bottom {
        margin-top: 50px;
    }

    .login-nav {
        background: transparent;
    }

    .main-back {
        display: none;
    }

    .mobile-back {
        display: block;
    }

    .lang-content a {
        font-size: 14px;
        font-weight: 400;
    }

    .lang-content a.active {
        font-size: 14px;
        font-weight: bold;
    }

    .mobile-back img {
        width: 24px;
        width: 24px;
    }

    .lang-content span {
        margin-bottom: -1px;
    }

    .lang-content span img {
        filter: grayscale(1) brightness(0.5);
        height: 16px;
    }

    .term-condition .terms {
        padding-left: 17px;
    }

    .term-condition .terms li {
        font-size: 14px;
    }

    .term-condition .terms li .head {
        font-size: 14px;
    }

    .term-and-condition-title h5 {
        font-size: 16px;
    }

    .term-and-condition-title {
        margin-bottom: 30px;
        display: none;
    }

    .sm-pt-0 {
        padding-top: 0 !important;
    }

    .auth-lang-content {
        display: none;
    }

    .auth-nav-title {
        display: block;
        text-align: center;
        width: 90%;
    }

    .auth-nav-title h5 {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 18px;
    }

    .auth-nav-menu {
        justify-content: flex-start;
    }

    .auth-logo.mobile-logo {
        display: flex;
        justify-content: center;
    }

    .auth-subtitle p {
        font-size: 14px;
    }

    .auth-tilte {
        font-size: 16px;
    }

    .checkout-form .form-label {
        font-size: 14px;
    }

    .resend-otp-link {
        font-size: 14px;
    }

    .segmentedInput-parent input {
        font-size: 18px;
    }

    .register-auth-left {
        display: none;
    }

    .register-auth-content {
        padding-top: 30px !important;
    }

    .advertisment-content {
        flex-direction: column;
    }

    .advertisment-content .promotion-content {
        width: 100%;
    }

    .advertisment-content .banner-content {
        width: 100%;
    }

    .event-cards {
        padding: 10px 0;
    }

    .card {
        width: 48%;
    }

    .ticket-tab .nav-tabs button {
        padding: 8px;
        width: auto;
        height: 36px;
        font-size: 12px;
        font-weight: bold;
    }

    .ticket-tab .nav-tabs button:hover,
    .ticket-tab .nav-tabs button:focus,
    .ticket-tab .nav-tabs button:focus-visible,
    .ticket-tab .nav-tabs button:focus-within,
    .ticket-tab .nav-tabs button.active {
        padding: 8px;
        width: auto;
        height: 36px;
        font-size: 12px;
        font-weight: bold;
    }

    .banner-section .carousel,
    .banner-section .carousel-inner,
    .banner-section .carousel-item,
    .banner-section .carousel-item img {
        height: 140px;
    }

    .card-content {
        padding: 15px 0px;
    }

    .ticket-btn {
        padding: 5px 20px;
        background: linear-gradient(90deg, #0C7A8B 0%, #15D4F1 100%);
        border: transparent;
        color: #FFFFFF;
        -webkit-text-fill-color: white;
        -webkit-background-clip: unset;
    }

    .card:hover {
        transform: none;
    }

    .advertisment-banner {
        height: 200px;
    }

    .banner-content {
        height: 200px;
    }

    .promotion-content .details-content-title {
        font-size: 16px;
    }

    .banner-content .details-content-title {
        font-size: 16px;
    }

    .advertisment-content {
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .sub-logo span {
        font-size: 16px !important;
    }

    .footer-section p span {
        font-size: 14px;
    }

    .footer-section p {
        align-items: center;
    }

    .footer-bottom {
        font-size: 12px;
        margin-top: 30px;
        margin-bottom: 65px;
    }

    .ticket-btn svg path {
        fill: #FFFFFF;
    }

    .success-details-content {
        padding: 0 !important;
        width: 100% !important;
    }

    .qr-code-image {
        height: 280px;
        width: 280px;
    }

    .auth-content-center,
    .auth-card {
        width: 100%;
    }

    .menu-left {
        width: 70%;
        gap: 10px;
    }

    .menu-right {
        width: 30%;
    }

    .navbar-logo img {
        width: 90px;
        height: 30px;
    }

    .menu-list {
        display: none;
    }

    .login-content {
        display: none;
    }

    .menu-left .search-form input {
        display: none;
    }

    .menu-left .search-form button {
        display: none;
    }

    .menu-left .search-form .search-icon {
        width: 120px;
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        top: 3px;
        margin-right: 10px;
    }

    .menu-left .search-form .search-icon img {
        height: 20px;
        width: 20px;
    }

    .sm-d-none {
        display: none;
    }

    /* ========================================
   HEADER USER DROPDOWN DESIGN
   ======================================== */

    /* User Dropdown Container */
    .user-dropdown {
        position: relative;
        display: inline-block;
    }

    /* User Profile Display */
    .user-profile {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        user-select: none;
        padding: 8px 12px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .user-profile:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .user-profile:focus {
        outline: 2px solid #5b8cff;
        outline-offset: 2px;
        border-radius: 8px;
    }

    /* User Avatar */
    .user-avatar {
        position: relative;
    }

    .user-avatar img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: border-color 0.3s ease;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-size: cover;
        background-position: center;
    }

    /* Default profile image styling */
    .user-avatar img[src*="profile.png"] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    /* Fallback for broken images */
    .user-avatar img:not([src]),
    .user-avatar img[src=""],
    .user-avatar img[src*="undefined"],
    .user-avatar img[src*="null"] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    /* Add a pseudo-element for default avatar when image fails */
    .user-avatar::before {
        content: "👤";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: 1;
    }

    /* Show default avatar when image fails to load */
    .user-avatar img[src*="profile.png"]+.user-avatar::before,
    .user-avatar img:not([src])+.user-avatar::before,
    .user-avatar img[src=""]+.user-avatar::before {
        opacity: 1;
    }

    .user-profile:hover .user-avatar img {
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* User Info */
    .user-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
    }

    .user-info .title {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        color: #FFFFFF;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    .user-info .subtitle {
        margin: 2px 0 0;
        font-size: 12px;
        opacity: 0.7;
        color: #FFFFFF;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    /* Dropdown Caret */
    .caret {
        margin-left: 6px;
        opacity: 0.7;
        transition: transform 0.15s ease;
        flex-shrink: 0;
    }

    .user-dropdown.open .caret {
        transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .user-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        min-width: 180px;
        list-style: none;
        color: #eee;
        display: none;
        z-index: 1000;
        padding: 8px;
        background: #112332;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .user-dropdown.open .user-menu {
        display: block;
        animation: dropdownFadeIn 0.2s ease-out;
    }

    @keyframes dropdownFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Menu Items */
    .user-menu li {
        margin: 2px 0;
    }

    .user-menu a,
    .user-menu button {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        border-radius: 8px;
        text-decoration: none;
        color: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .user-menu a:hover,
    .user-menu button:hover,
    .user-menu a:focus,
    .user-menu button:focus {
        background: rgba(255, 255, 255, 0.1);
        outline: none;
        transform: translateX(2px);
    }

    .user-menu a img,
    .user-menu button img {
        width: 16px;
        height: 16px;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .user-menu a:hover img,
    .user-menu button:hover img {
        opacity: 1;
    }

    /* Logout Button Special Styling */
    .user-menu li:last-child a,
    .user-menu li:last-child button {
        color: #ff6b6b;
    }

    .user-menu li:last-child a:hover,
    .user-menu li:last-child button:hover {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

    /* Focus Management */
    .user-dropdown:focus-visible {
        border: 0;
        outline: 0;
    }

    .user-dropdown .user-profile {
        outline: 0 !important;
        box-shadow: none !important;
        border-color: inherit !important;
    }

    /* Mobile Responsive */
    @media only screen and (max-width: 600px) {
        .user-dropdown {
            display: none;
        }
    }

    /* Tablet Responsive */
    @media only screen and (max-width: 768px) {
        .user-info .title {
            max-width: 100px;
            font-size: 13px;
        }

        .user-info .subtitle {
            max-width: 100px;
            font-size: 11px;
        }

        .user-menu {
            min-width: 160px;
            right: -10px;
        }
    }

    /* Desktop Hover Effects */
    @media (hover: hover) {
        .user-profile:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .user-menu a:hover,
        .user-menu button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(2px);
        }
    }