/* Section */
.pool-bank {
    position: relative;
    background: #ffffff;
    padding: 100px 20px;
}

.pool-bank .shade {
    position: absolute;
    top: -400px;
    left: 0;
}

.pool-bank-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left */
.pool-bank-content {
    flex: 1;
}

.pool-bank-title {
    font-size: 52px;
    color: #003451;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pool-bank-text {
    font-size: 18px;
    color: #4a6572;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.pool-bank-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2f5fd0;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* Right */
.pool-bank-video {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-card {
    background: linear-gradient(135deg, #2f5fd0, #3c6be0);
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    max-width: 520px;
    position: relative;
}

/* Video */
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ffffff;
}

.video-wrapper img {
    width: 100%;
    display: block;
    z-index: 90 !important;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2f5fd0;
    cursor: pointer;
}

/* Watch button */
.watch-btn {
    margin: 25px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    color: #123b52;
    cursor: pointer;
}

.watch-btn .dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #123b52;
    border-radius: 50%;
    font-size: 6px !important;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .pool-bank-container {
        flex-direction: column;
        text-align: center;
    }

    .pool-bank-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pool-bank-title {
        font-size: 34px;
    }

    .pool-bank-text {
        font-size: 16px;
    }

    .video-card {
        padding: 20px;
    }

    .play-button {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}
