.icon-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.card:hover .icon-circle {
    transform: scale(1.1);
}

.transition {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    background-color: #e9ecef;
    color: #333;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

.park-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.park-card:hover {
    transform: translateY(-4px);
}

.park-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.park-image-container img.main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.winner-badges img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.park-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.park-image-container:hover .park-overlay {
    opacity: 1;
}

.flag-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transition-3d-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.transition-3d-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.card .icon {
    color: #007bff;
}

.bg-light-subtle {
    background-color: #f8f9fa;
}
.state-badge {
    position: absolute;
    top: 12px;
    left: -8px;
    background-color: #28a745; /* or use dynamic color */
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.state-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #28a745;
}

.team-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.team-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.team-role {
    color: #777;
    font-size: 0.95rem;
}

.team-bio {
    font-size: 0.9rem;
    color: #555;
    margin-top: 12px;
    max-height: 120px;
    overflow-y: auto;
}

.team-bio::-webkit-scrollbar {
    width: 6px;
}

.team-bio::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.flag-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
