/* General styling for the biomes list */
.biomes_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

/* Biome card styling */
.biome {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--accent-dark);
    margin-left: 10px;
    margin-right: 10px;
}

.biome:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 189, 0.2);
    border-color: var(--accent-color);
}

/* Image styling */
.biome-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--hover-color);
}

.biome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.biome:hover .biome-image img {
    transform: scale(1.05);
}

/* Text content styling */
.biome-text {
    flex-grow: 1;
}

.biome-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(0, 255, 189, 0.2);
}

.biome-description {
    font-size: 1.1em;
    color: #aaa;
    line-height: 1.5;
}

/* Status indicator (optional) */
.biome-status {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--solana-purple);
    color: white;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 10px;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .biome {
        flex-direction: column;
        align-items: flex-start;
    }

    .biome-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .biome-name {
        font-size: 1.3em;
    }

    .biome-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .biomes_list {
        gap: 15px;
    }
    
    .biome {
        padding: 12px;
    }
    
    .biome-image {
        height: 160px;
    }
    
    .biome-name {
        font-size: 1.2em;
    }
    
    .biome-description {
        font-size: 0.9em;
    }
}