:root {
    --fullWidth: 100%;
    --bg-LuTheme: #ffffff;
    --bg-LuThemeOne: #efefef;
    --luText: #000;
    --bprogress-color: hsl(227, 100%, 40%);
    --bprogress-height: 2px;
    --bprogress-spinner-size: 18px;
    --bprogress-spinner-animation-duration: 400ms;
    --bprogress-spinner-border-size: 2px;
    --bprogress-box-shadow: 0 0 10px hsl(227, 100%, 40%), 0 0 5px hsl(227, 100%, 40%);
    --bprogress-z-index: 99999;
    --bprogress-spinner-top: 15px;
    --bprogress-spinner-bottom: auto;
    --bprogress-spinner-right: 15px;
    --bprogress-spinner-left: auto;
    --luBGColorOpt: linear-gradient(181deg, rgb(243 215 184) 0%, rgb(215 152 187) 100%);
    --luBGColorOpt1: linear-gradient(41deg, rgb(243 215 184) 0%, rgb(215 152 187) 100%);
}

/* Container for the animated gradient circle */
.animated-logo-container {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    /* Clips the moving blobs to a circle */
    background: linear-gradient(181deg, rgb(243, 215, 184) 0%, rgb(215, 152, 187) 100%);
    /* Fallback color */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.animated-logo-container:hover {
    transform: scale(1);
}

/* The moving color blobs */
.blob {
    border-radius: 50%;
    filter: blur(15px);
    mix-blend-mode: multiply;
    animation: shift 10s infinite alternate;
    opacity: 0.7;
}

/* Color variations matching the video */
.blob-1 {
    width: 36px;
    height: 36px;
    background: #4A5568;
    /* Darker slate/blue */
    animation-duration: 7s;
}

.blob-2 {
    width: 36px;
    height: 36px;
    background: rgb(243 215 184);
    /* Deep pink */
    animation-duration: 12s;
}

.blob-3 {
    width: 36px;
    height: 36px;
    background: rgb(215 152 187);
    /* Purple */
    animation-duration: 5s;
}

/* The "lava lamp" movement */
@keyframes shift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(15px, -10px) scale(1);
    }

    66% {
        transform: translate(-10px, 15px) scale(1);
    }

    100% {
        transform: translate(5px, 5px) scale(1);
    }
}

/* Hover effect to intensify colors */
.animated-logo-container:hover .blob {
    opacity: 1;
    filter: blur(10px);
    /* Sharper colors on hover */
}

.bprogress {
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: var(--bprogress-z-index);
}

.bprogress .bar {
    background: var(--bprogress-color);
    position: fixed;
    z-index: var(--bprogress-z-index);
    top: 0;
    left: 0;
    width: 100%;
    height: var(--bprogress-height);
}

/* Fancy blur effect */
.bprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: var(--bprogress-box-shadow);
    opacity: 1.0;
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
.bprogress .spinner {
    display: block;
    position: fixed;
    z-index: var(--bprogress-z-index);
    top: var(--bprogress-spinner-top);
    bottom: var(--bprogress-spinner-bottom);
    right: var(--bprogress-spinner-right);
    left: var(--bprogress-spinner-left);
}

.bprogress .spinner-icon {
    width: var(--bprogress-spinner-size);
    height: var(--bprogress-spinner-size);
    box-sizing: border-box;
    border: solid var(--bprogress-spinner-border-size) transparent;
    border-top-color: var(--bprogress-color);
    border-left-color: var(--bprogress-color);
    border-radius: 50%;
    -webkit-animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
    animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
}

.bprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.bprogress-custom-parent .bprogress .spinner,
.bprogress-custom-parent .bprogress .bar {
    position: absolute;
}

.bprogress .indeterminate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--bprogress-height);
    overflow: hidden;
}

.bprogress .indeterminate .inc,
.bprogress .indeterminate .dec {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: var(--bprogress-color);
}

.bprogress .indeterminate .inc {
    animation: bprogress-indeterminate-increase 2s infinite;
}

.bprogress .indeterminate .dec {
    animation: bprogress-indeterminate-decrease 2s 0.5s infinite;
}

@-webkit-keyframes bprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes bprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bprogress-indeterminate-increase {
    from {
        left: -5%;
        width: 5%;
    }

    to {
        left: 130%;
        width: 100%;
    }
}

@keyframes bprogress-indeterminate-decrease {
    from {
        left: -80%;
        width: 80%;
    }

    to {
        left: 110%;
        width: 10%;
    }
}

/* Animation Section End */

#luTheme {
    background: var(--bg-LuTheme);
    color: #000;
}

/* #luTheme End */

#lMNavi {
    width: auto;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

#lMNavi .list-group-horizontal {
    flex-direction: row-reverse !important;
}

#lMNavi li.list-group-item {
    border: none;
    border-radius: 0;
    padding: 1.5rem 0rem 0.44rem 0rem;
    background: transparent;
    color: rgb(0, 0, 0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

#lMNavi li.list-group-item>a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.luLogo {
    transform: rotate(180deg);
    width: 40px;
    height: 40px;
}

#lMNaviOpt2 {
    width: 70px;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
}

#lMNaviOpt2 .minHeightLu {
    min-height: 90vh;
}

#lMNaviOpt2 .container-fluid {
    flex-wrap: unset;
}

#lMNaviOpt2 .navbar-nav {
    display: inline-flex;
    flex-direction: row;
}

#lMNaviOpt2 ul.navbar-nav li.nav-item a.nav-link {
    line-height: 1.2;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(0, 0, 0);
    transform: rotate(180deg);
}

/* #lMNavi & #lMNaviOpt2End */

#txtContent {
    overflow-y: scroll;
    height: 81vh;
}

#txtContent h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
#txtContent p a,
#txtContent li a,
#txtContent td a,
#txtContent span a,
#txtContent div a {
    color: var(--bg-LuTheme);
    text-decoration: none;
}

#txtContent h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
#txtContent p a:hover,
#txtContent li a:hover,
#txtContent td a:hover,
#txtContent span a:hover,
#txtContent div a:hover {
    color: #e698c1;
}

#txtContent h1,
#txtContent h2,
#txtContent h3 {
    margin: 0;
    padding: 1.5rem 0;
    font-size: 2rem;
}

#txtContent h4 {
    margin: 0;
    padding: 1rem 0;
    font-size: 1.6rem;
}

#txtContent h5 {
    margin: 0;
    padding: 1rem 0;
    font-size: 1.2rem;
}

#txtContent h6 {
    margin: 0;
    padding: 1rem 0;
    font-size: 1rem;
}

#txtContent p {
    font-size: 0.90rem;
    font-weight: 200;
    line-height: 24px;
    margin-bottom: 0.3rem;
}

#txtContent ul li,
#txtContent ul li p {
    font-size: 0.82rem;
    font-weight: 200;
    line-height: 18px;
    margin-bottom: 0.2rem;
}

#txtContent .nav-tabs {
    border-bottom: 0;
}

#txtContent .nav-tabs .nav-link {
    color: #fff;
    margin-left: 7px;
    border-color: #e3b1ba;
}

#txtContent .nav-tabs .nav-link.active {
    background: linear-gradient(181deg, rgb(243, 215, 184) 0%, rgb(215, 152, 187) 100%);
    font-size: 1em;
    font-weight: 800;
    border-color: #e3b1ba;
    color: #000
}

#txtContent .nav-tabs .nav-link:focus,
#txtContent .nav-tabs .nav-link:hover {
    border-color: #e3b1ba;
}

#luTheme .rounded-md-5 {
    border-radius: 1rem;
}

#luTheme .ps-4 {
    padding-left: inherit;
}

.abcText {
    font-size: calc(0.0324 * var(--fullWidth, 100vw) + 29.3714px);
    font-weight: 550;
    letter-spacing: -0.03em;
    line-height: 1.15em;
}

.luMusicLogo {
    width: 60px;
    height: 60px;
}

/* For Mobile */
@media (max-width: 768px) {
    #lMNaviOpt2 {
        width: 100%;
        height: 2vh;
        writing-mode: initial;
    }

    #lMNaviOpt2 .minHeightLu {
        min-height: 10px;
    }

    #lMNaviOpt2 .container-fluid {
        flex-wrap: unset;
    }

    #lMNaviOpt2 .navbar-nav {
        display: inline-flex;
        flex-direction: row;
    }

    #lMNaviOpt2 ul.navbar-nav li.nav-item a.nav-link {
        transform: rotate(0deg);
        padding: 0px 10px;
    }

    #txtContent {
        height: 74vh;
        overflow: hidden;
        overflow-y: scroll;
        object-fit: inherit;
    }

    #luTheme .rounded-md-5 {
        border-radius: 1rem;
    }

    #luTheme .ps-4 {
        padding-left: 2.15rem !important;
    }
    #csHide{display: none;}
}