.fairy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
    justify-content: center;
}

.fairy-card {
    flex: 1 1 calc(50% - 15px);
    max-width: 220px;
    min-width: 140px;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 76, 154, 0.12);
    transition: all 0.3s ease;
}

.fairy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 76, 154, 0.22);
}

.fairy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1);
}

.fairy-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 5px 8px; 
    background: linear-gradient(to top, rgba(0, 76, 154, 0.7) 0%, transparent 100%);
    text-shadow: 1px 1px 3px rgba(0, 76, 154, 0.8);
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 1px 1px 3px rgba(10, 26, 58, 0.9);
}

.ft-navigation-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ft-navigation-bottom p {
    color: #666;
    margin-bottom: 15px;
    font-weight: bold;
}

.ft-nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-nav-links a {
    background: #e7f6fe;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #444;
    font-size: 0.9em;
    transition: all 0.2s ease;
    border: 1px solid #d0e8f5;
}

.ft-nav-links a:hover {
    background: #d1ebfa;
    color: #000;
    transform: scale(1.05);
}

@media (min-width: 800px) {
    .fairy-card { 
        flex: 1 1 calc(25% - 15px); 
    } 
    .ft-container {
        padding: 20px;
    }
}