/* ========== SUPPORTERS SECTION ========== */

.supporters-section {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.supporter-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.supporter-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 200, 255, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(100, 200, 255, 0.15);
}

.supporter-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.supporter-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.3), rgba(138, 100, 255, 0.3));
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.supporter-card:hover .supporter-icon-bg {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.5), rgba(138, 100, 255, 0.5));
}

.supporter-icon {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    stroke: rgba(100, 200, 255, 0.9);
    z-index: 1;
}

.supporter-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.supporter-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #b8e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.supporter-role {
    font-size: 0.85rem;
    color: rgba(100, 200, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.supporter-description {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
}

.supporter-more-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.3), rgba(138, 100, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.supporter-more-btn:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.5), rgba(138, 100, 255, 0.5));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

/* Supporter Modal */
.supporter-modal-header {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.2), rgba(138, 100, 255, 0.2));
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-modal-icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.3), rgba(138, 100, 255, 0.3));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: supporterIconFloat 3s ease-in-out infinite;
}

.supporter-modal-icon-container svg {
    width: 60px;
    height: 60px;
    stroke: rgba(100, 200, 255, 0.9);
    stroke-width: 1.5;
    fill: none;
}