.bv-container-2ba772ed {
    font-family: 'Libre Franklin', sans-serif;
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.bv-section-2ba772ed {
    padding: 30px 15px;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bv-header-2ba772ed {
    text-align: center;
    margin-bottom: 40px;
}
.bv-title-2ba772ed {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    color: #fff;
}
.bv-subtitle-2ba772ed {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}
.bv-grid-2ba772ed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.bv-card-2ba772ed {
    background-color: #2b2f33;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.bv-card-2ba772ed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #61CE70;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.bv-card-2ba772ed:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-color: #61CE70;
}
.bv-card-2ba772ed:hover::before {
    transform: scaleX(1);
}
.bv-icon-2ba772ed {
    font-size: 3rem;
    margin-bottom: 15px;
}
.bv-card-title-2ba772ed {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: #fff;
}
.bv-card-vibe-2ba772ed {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0 0 25px;
}
.bv-btn-2ba772ed {
    display: inline-block;
    padding: 10px 20px;
    background-color: #61CE70;
    color: #111 !important;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: auto;
    cursor: pointer;
}
.bv-btn-2ba772ed:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Takeover Styles */
.bv-takeover-2ba772ed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222629;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.bv-takeover-2ba772ed.active {
    opacity: 1;
    transform: scale(1);
}
.bv-takeover-header-2ba772ed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.bv-back-btn-2ba772ed {
    background-color: #61CE70;
    color: #111;
    font-weight: 700;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bv-back-btn-2ba772ed:hover {
    transform: translateX(-4px);
    opacity: 0.9;
}
.bv-takeover-title-2ba772ed {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.bv-iframe-wrapper-2ba772ed {
    flex-grow: 1;
    width: 100%;
    min-height: 520px;
    background: #1e2124;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}
.bv-iframe-wrapper-2ba772ed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
