/* navbar css */
.navbar-custom {
    backdrop-filter: blur(5px) brightness(70%);
}

.nav-link {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 500;
    margin-left: 25px;
}

.nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* about section css */
.about-section .aboutTitle {
    font-family: 'Poppins', sans-serif;
    color: gold;
    font-weight: 800;
    font-size: clamp(20px, 8vw, 30px);
}

.about-section h5 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(5px, 4vw, 15px);
    color: white;

}

.ic-video video {
    width: 90%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}

.ic-video {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

/*characters section css */
.charac-title {
    font-family: 'Afacad', sans-serif;
    font-weight: 800;
    font-size: clamp(35px, 8vw, 50px);
    color: white;
}

.characCard {
    width: 100%;
    max-width: 500px;
    height: 280px;
    min-height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #fff;
}

/* Hover zoom + race glow */
.characCard:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--race-color, #FFD700);
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.characCard .row {
    height: 100%;
    align-items: center;
}

.characCard .col-4,
.characCard .col-8 {
    display: flex;
    align-items: center;
}

.character-img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
}

.text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
}

.text-area h5 {
    font-size: clamp(31px, 4vw, 43px);
    font-weight: 800;
    font-family: 'Afacad', sans-serif;
    margin: 0;
}

.text-area p {
    font-size: clamp(14px, 3vw, 18px);
    margin: 0.25rem 0 0;
}


/* footer */
.footer {
    background: #000000;
    text-align: center;
    padding: 8px;
    font-size: 15px;
    color: #ffffff;
}   

.footer p {
    margin: 0;
}

.footer .credits {
    font-size: 10px;
    color: #838282;
}