
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Arrows:wght@400..700&family=Parkinsans:wght@300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    /* background-color: black;
    font-family: "Parkinsans", sans-serif !important; */
}
.title{
    width: 100%;
    height: 30vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title h1{
    color: #fff;
}
.title p{
    color: skyblue;
}
.banner{
    display: flex;
    justify-content: center;
    margin: 40px 0px;
}
.banner img{
    border-radius: 7px;
}
.art-category-1{
    display: flex;
    justify-content: center;
    border-radius: 6px; 
    margin-bottom: 30px;
}
.svg-container {
    position: relative;
    width: 100% !important;
    /* width: 1200px;
    height: 500px; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.rounded-svg {
    border-radius: 7px;
}

.overlay h1{
    margin: 20px;
}
.overlay p {
    position: absolute;
    bottom: 0px;
    margin-top: 25px;
}

.overlay h1 {
    margin-bottom: 40px;
    color: skyblue;
    font-size: 20px;
    font-weight: 600;
}


.svg-container:hover .overlay {
    opacity: 1;
    border-radius: 0.75rem;
}
.topic-title h1, p{
    color: white;
    margin-left: 20px;
}
.transmission-data{
    display: flex;
    justify-content: center;
}
.transmission h1{
    color: white;
    margin-left: 20px;
    margin-bottom: 5px;
}
.transmission p{
    color: ;
}
.video-title{
    color: white;
    margin-left: 20px;
}
.set-footer{
    border-top: 2px solid white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
}
.set-footer h4{
    color: white;
    font-size: 14px;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1rem;
}

/* Card styling */
.custom-card {
    position: relative;
    background: linear-gradient(to right, rgba(0, 112, 128, 0.2), rgba(255, 0, 128, 0.2));
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
}

.custom-card.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.custom-card:hover {
    /* transform: scale(1.02); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Image wrapper */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: #1f2937; /* Gray-800 */
}

.image-wrapper-neural {
    /* width: 1200px;
    height: 500px; */
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* .image-wrapper:hover .image {
    transform: scale(1.05);
} */

/* Content styling */
.content {
    margin-top: 1rem;
}

/* Glitch effect for the title
.glitch {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
    display: inline-block;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.2), 
        -1px -1px 2px rgba(255, 0, 128, 0.5),
        1px -1px 2px rgba(0, 112, 128, 0.5);
    animation: glitch 1.5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: inherit;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 cyan;
    animation: glitch-anim-1 1.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 magenta;
    animation: glitch-anim-2 1.5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% { transform: skew(0.5deg); }
    25% { transform: skew(-0.5deg); }
    50% { transform: skew(0.5deg); }
    75% { transform: skew(-0.5deg); }
    100% { transform: skew(0.5deg); }
}

@keyframes glitch-anim-1 {
    0% { clip: rect(0, 900px, 0, 0); }
    100% { clip: rect(15px, 900px, 25px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(10px, 900px, 40px, 0); }
    100% { clip: rect(5px, 900px, 15px, 0); }
} */

/* Description text */
.description {
    color: #d1d5db;
    font-size: 1rem;
    margin-left: 0px;
}

.btn.loading {
    position: relative;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}