@font-face {
    font-family: 'NarutoFont';
    src: url('../njnaruto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
}

.backButton {
    display: none; 
    padding: 10px; 
    font-size: 24px; 
    font-weight: bold; 
    border-radius: 10px; 
    font-family: NarutoFont, sans-serif;
}

body[data-bs-theme="dark"] .cardClanName {
    color: #2F2F2F;
}

.cardClanName {
    height: 100px;
    font-size: 32px;
    background-image: radial-gradient(circle, #FFED8C, #EC7F6C);
    transition: filter 0.3s ease;
    font-weight: bold;
}

.cardClanName:hover {
    filter: blur(4px);
}

.characterCard {
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Verdana, sans-serif;
}

.characterCard img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.characterCard:hover {
    transform: scale(1.05);
    z-index: 1;
    cursor: pointer;
    box-shadow: 1px 1px 5px 1px rgba(211, 115, 37, 0.649);
}

.characterInfoContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.characterName {
    font-size: 24px; 
    font-weight: bold;
}

.clanDetails {
    display: none;
}

.clanLogo {
    font-size: 40px;
    font-family: 'NarutoFont', sans-serif;
}

@media (max-width: 768px) {
    .cardClanName {
        font-size: 4vw;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .cardClanName {
        font-size: 3vw;
    }
}

@media (min-width: 1201px) {
    .cardClanName {
        font-size: 2vw;
    }
}