@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Play:wght@400;700&display=swap');

body{
    overflow: hidden;
}

a.fill-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    position: fixed;
}

.title , .title2{
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.title:before {
    display: block;
  float: right;
  margin-top: .8em; /* half the line-height */
  margin-bottom: 10px;
  border-top: 2px solid silver;
  width: 100%;
  content: "";
  }

.disc{
    color: #48265f;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: #0e0b1a;
}

.content {
    color: whitesmoke;
    padding: 20px;
    overflow-y: scroll;
    max-height: 100vh;
    animation: slideInLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 0.5s; /* don't forget to set a duration! */
}

.item{
    background-image: linear-gradient(#46318a, #340f49, #28023e);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

.e-item{
    background-image: linear-gradient(#46318a, #340f49, #28023e);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

.p-item{
    background-image: linear-gradient(#46318a, #340f49, #28023e);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

.item:nth-child(1){
    animation-delay: 5s;
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2.5s; /* don't forget to set a duration! */
}
.item:nth-child(2){
    animation-delay: 5s;
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 4.5s; /* don't forget to set a duration! */
}
.item:nth-child(3){
    animation-delay: 5s;
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 6s; /* don't forget to set a duration! */
}

.image{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: -12px;
    margin-right: -12px;
}

.image img{
    flex-shrink: 1;
    min-width: 100%;
    min-height: 100%;
    height: 200px;
    width: 300px;
    object-fit: cover;
}

.pps > .col > .image img{
    height: 300px;
}

.header{
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-size: 13px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.description{
    height: auto;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
}

.edescription{
    height: auto;
    margin-top: 15px;
    font-size: 12px;
    line-height: 0.5px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
}

.pdescription{
    height: auto;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
}

.description i{
    line-height: 0px;
}

.pdescription i{
    line-height: 0px;
}

.cont {
    display: flex;
}

.mdItem {
    background-image: linear-gradient(#46318a, #340f49, #28023e);
    width: 100%;
    height: auto;
    padding: 10px;
    color: white;

    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    line-height: 1px;
    font-size: 13px;
    border-radius: 10px;

    margin-top: 10px;
}

.modal-content {
    background-color: #11001b !important ;
}

.modal-body {
    border-radius: 10px;
    padding: 25px !important;
}

.modal-header {
    background-color: #490272;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    color: white;
    border-bottom: none !important;
}

#modalVideo {
    border-radius: 10px;
    width: 100%;
    -webkit-box-shadow:0px 0px 24px 1px rgba(255,255,255,0.46);
-moz-box-shadow: 0px 0px 24px 1px rgba(255,255,255,0.46);
box-shadow: 0px 0px 24px 1px rgba(255,255,255,0.46);
}

#modalEvideo {
    border-radius: 10px;
    width: 100%;
    -webkit-box-shadow:0px 0px 24px 1px rgba(255,255,255,0.46);
-moz-box-shadow: 0px 0px 24px 1px rgba(255,255,255,0.46);
box-shadow: 0px 0px 24px 1px rgba(255,255,255,0.46);
}

.btn-close {
    color: white;
}

.footer {
    margin-top: 30px;
}

.discuser {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    color: white;
}

.carousel {

    height:500px;
    
    }
    
    .carousel-inner > .carousel-item > img {
    
    height:500px;
    width: 100%;
    object-fit: contain;
    margin: auto;
    
    }
@media (max-width: 425px) {


}

#break-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.4); /* dark semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all; /* blocks interaction */
    flex-direction: column; /* Ensure children are stacked vertically */
    opacity: 1;
    transition: opacity 0.5s ease;
}

#break-overlay.fade-out{
    opacity: 0;
}

.break-message {
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* dark glassy bg */
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    color: #fff;
    font-family: inherit;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.break-message h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#break-view {
    margin-top: 20px;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    text-decoration: underline;
}

.break-message p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.break-logo {
    width: 90px; /* Small size */
    height: auto;
    margin-top: 20px; /* Spacing between the message box and logo */
}

  