/* FART CLUB Characters Page - Custom Styles */
/* All classes prefixed with 'fc-' to avoid conflicts */

/* Page Hero Section */
.fc-page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, 
        rgba(54, 77, 32, 0.2) 0%, 
        rgba(31, 51, 21, 0.4) 50%, 
        rgba(20, 31, 16, 0.9) 100%);
}

.fc-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(125, 165, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(107, 125, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 125, 58, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: fc-toxicPulse 12s ease-in-out infinite;
}

.fc-hero-title {
    font-family: "Rubik Wet Paint", cursive;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: #7da528;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 15px rgba(125, 165, 40, 0.4),
        0 0 30px rgba(125, 165, 40, 0.2);
}

.fc-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Heading */
.fc-section-heading {
    font-family: "Rubik Wet Paint", cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #7da528;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 10px rgba(125, 165, 40, 0.3),
        0 0 20px rgba(125, 165, 40, 0.2);
}

/* Spotlight Section */
.fc-spotlight-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(20, 31, 16, 0.98) 0%, 
        rgba(31, 51, 21, 0.95) 50%, 
        rgba(20, 31, 16, 0.98) 100%);
}

.fc-spotlight-wrapper {
    background: linear-gradient(145deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 50%, 
        rgba(31, 51, 21, 0.95) 100%);
    border-radius: 12px;
    padding: 4rem;
    border: 2px solid rgba(125, 165, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.fc-spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fc-spotlight-image {
    text-align: center;
}

.fc-spotlight-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #7da528;
    box-shadow: 0 0 30px rgba(125, 165, 40, 0.4);
}

.fc-spotlight-name {
    color: #7da528;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.fc-spotlight-title {
    color: #8a8a8a;
    font-style: italic;
    margin-bottom: 2rem;
}

.fc-spotlight-description {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fc-gas-signature {
    background: rgba(125, 165, 40, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #7da528;
}

.fc-gas-label {
    color: #7da528;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fc-gas-description {
    color: #ffffff;
    margin: 0;
}

/* Roster Section */
.fc-roster-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 50%, 
        rgba(31, 51, 21, 0.95) 100%);
}

/* Filter Container */
.fc-filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.fc-filter-button {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    background: transparent;
    color: #7da528;
    border: 2px solid #7da528;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.fc-filter-button:hover,
.fc-filter-button.fc-active {
    background: #7da528;
    color: #0d1117;
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(125, 165, 40, 0.3);
}

/* Characters Grid */
.fc-characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* Fighter Card */
.fc-fighter-card {
    background: linear-gradient(145deg, 
        rgba(31, 51, 21, 0.95) 0%, 
        rgba(42, 64, 25, 0.9) 50%, 
        rgba(31, 51, 21, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(125, 165, 40, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(125, 165, 40, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fc-fighter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(125, 165, 40, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fc-fighter-card:hover::before {
    opacity: 1;
}

.fc-fighter-card:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 165, 40, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(125, 165, 40, 0.2),
        0 0 20px rgba(125, 165, 40, 0.05);
}

/* Fighter Image */
.fc-fighter-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(20, 31, 16, 0.95) 0%, 
        rgba(31, 51, 21, 0.9) 100%);
    border: 3px solid #7da528;
    box-shadow: 
        0 0 20px rgba(125, 165, 40, 0.3),
        inset 0 0 20px rgba(125, 165, 40, 0.1);
}

.fc-fighter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fc-fighter-card:hover .fc-fighter-image img {
    transform: scale(1.05);
}

/* Fighter Info */
.fc-fighter-name {
    color: #7da528;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(125, 165, 40, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.fc-fighter-title {
    color: #ffffff;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.fc-fighter-desc {
    color: #ffffff;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    flex-grow: 1;
}

/* Fighter Tags */
.fc-fighter-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.fc-tag {
    background: #4a6630;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

/* Gas Section */
.fc-gas-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(20, 31, 16, 0.98) 0%, 
        rgba(31, 51, 21, 0.95) 50%, 
        rgba(20, 31, 16, 0.98) 100%);
}

.fc-gas-wrapper {
    background: radial-gradient(ellipse at center, 
        rgba(54, 77, 32, 0.9) 0%, 
        rgba(31, 51, 21, 0.95) 60%, 
        rgba(20, 31, 16, 0.98) 100%);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    border: 2px solid rgba(125, 165, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.fc-gas-subtitle {
    font-size: 1.25rem;
    color: #8a8a8a;
    margin-bottom: 3rem;
}

.fc-gas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fc-gas-item {
    text-align: center;
}

.fc-gas-icon {
    font-size: 3rem;
    color: #7da528;
    margin-bottom: 0.5rem;
}

.fc-gas-name {
    color: #e6edf3;
    margin-bottom: 0.5rem;
}

.fc-gas-fighter {
    color: #8a8a8a;
    font-size: 0.875rem;
}

/* Hidden class for filtering */
.fc-fighter-card.fc-hidden {
    display: none;
}

/* Animations */
@keyframes fc-toxicPulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .fc-spotlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fc-spotlight-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .fc-page-hero {
        min-height: 50vh;
        padding: 100px 0 40px;
    }
    
    .fc-fighter-card {
        min-height: 380px;
        padding: 1.25rem;
    }
    
    .fc-fighter-image {
        width: 150px;
        height: 150px;
    }
    
    .fc-fighter-name {
        font-size: 1.25rem;
    }
    
    .fc-filter-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .fc-gas-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .fc-characters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fc-fighter-card {
        min-height: 360px;
    }
    
    .fc-spotlight-wrapper {
        padding: 1.5rem;
    }
    
    .fc-gas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}