.mc-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.mc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 15, 19, 0.5), rgba(15, 15, 19, 0.8));
    z-index: 1;
}

.mc-hero .container {
    position: relative;
    z-index: 2;
}

.mc-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mc-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.info-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mc-description {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
}

.mc-description h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.builders-section {
    padding: 60px 0;
}

.builders-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.builder-card-wrapper {
    position: relative;
    height: 100%;
}

.builder-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    z-index: 1;
}

.builder-card:hover:not(.expanded) {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.builder-card.expanded {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.builder-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--accent-color);
    transition: transform 0.5s ease;
}

.builder-card.expanded .builder-img {
    transform: scale(1.1);
}

.builder-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.builder-desc {
    color: var(--secondary-text);
    font-size: 0.95rem;
    font-style: italic;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
}

.builder-desc.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 4.2rem;
}

.show-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.show-more-btn:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}