.besti-tcg-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 60px;
    height: 500px;
	
}

.besti-tcg-video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.besti-tcg-video-foreground {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    pointer-events: none;
}

.besti-tcg-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(25,24,24,1.0), rgba(236,56,53,0.6));
    z-index:1;
}

.besti-tcg-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.besti-tcg-arrow-down {
    width: 0; height: 0; margin: 0 auto;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #fff;
    animation: besti-bounce 1.5s infinite;
}

@keyframes besti-bounce {
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(10px);}
}

.besti-tcg-card {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.35);
    border-radius: 12px;
    transition: transform .2s ease;
    padding: 15px;
}

.besti-tcg-card-bg {
    width: 100%;
    max-width: 150px;
}

.besti-tcg-card-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.besti-tcg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

@media (max-width: 767.98px) {
    .besti-tcg-section { height: 70vh; }
    .besti-tcg-content { padding: 40px 12px 80px; margin-bottom:40px; }
    .besti-tcg-card { padding: 10px; }
    .besti-tcg-card-bg { max-width: 120px; }
}
