/* Payment Container */
.payment-container {
    background: url('https://vendor-provider.fra1.cdn.digitaloceanspaces.com/ebetlab/ep3YGM2vykm19eefqTFkF0LvamjEEULx/mini-sliders/n5qdTSd1muQTMuPXskgnh3VdzKHlT9fqNg7tWJ5l.png') no-repeat center center;
    background-size: cover;
    padding: 1rem 2rem;
    border-radius: 20px;
    margin: 15px auto;
    margin-bottom: 15px;
    width: calc(100% - 40px);
    max-width: 1360px;
    box-sizing: border-box;
    border: 2px solid #F9C636;
    box-shadow: 0 0 15px rgba(249, 198, 54, 0.2);
}

.payment-inner {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.payment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.payment-text {
    flex: 1;
    text-align: left;
    color: #fff;
    padding-left: 0;
    margin-left: 0;
}

.payment-title {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 2.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 0px;
    margin-bottom: -5px;
    line-height: 1.2;
    padding-left: 0;
    margin-left: 0;
}

/* Payment Subtitle - Web görünümü için */
@keyframes yellowGlow {
    0% {
        text-shadow: 0 0 5px rgba(249, 198, 54, 0.5),
                    0 0 10px rgba(249, 198, 54, 0.4);
    }
    50% {
        text-shadow: 0 0 20px rgba(249, 198, 54, 0.9),
                    0 0 30px rgba(249, 198, 54, 0.7),
                    0 0 40px rgba(249, 198, 54, 0.5);
    }
    100% {
        text-shadow: 0 0 5px rgba(249, 198, 54, 0.5),
                    0 0 10px rgba(249, 198, 54, 0.4);
    }
}

.payment-subtitle {
    color: #FFD700 !important; /* Daha parlak altın sarısı */
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    white-space: normal; 
    overflow: visible; 
    text-overflow: clip;
    max-width: 100%;
    display: block;
    animation: yellowGlow 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    line-height: 1.2;
}

.payment-button {
    padding: 16px 32px !important;
    border: 1px solid #FFD700 !important;
    border-radius: 8px !important;
    background: linear-gradient(to right,
            #000000 0%,
            #111111 29%,
            #000000 68%,
            #222222 100%) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-transform: capitalize !important;
    cursor: pointer !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 55px !important;
    min-width: 180px !important;
    float: left;
    letter-spacing: 0.5px;
    gap: 8px;
}

.payment-button:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
    border-color: #FFF !important;
}

.payment-button:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3) !important;
}

/* Mobil için buton */
@media (max-width: 767px) {
    .payment-button {
        font-size: 16px !important;
        padding: 14px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 15px auto !important;
        float: none !important;
        text-align: center !important;
        width: auto !important;
        min-width: 160px !important;
        height: 50px !important;
    }
}

.coin-images {
    display: flex;
    align-items: center;
    position: relative;
    height: 200px;
    margin-top: -60px;
    margin-bottom: -20px;
    width: 570px;
}

.coin-image {
    width: 200px;
    height: 290px;
    object-fit: contain;
    position: absolute;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.coin-image:nth-child(1) {
    z-index: 4;
    right: 0;
    animation: coinFloat 3s ease-in-out infinite;
}

.coin-image:nth-child(2) {
    z-index: 3;
    right: 120px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 0.75s;
}

.coin-image:nth-child(3) {
    z-index: 2;
    right: 240px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.coin-image:nth-child(4) {
    z-index: 1;
    right: 360px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 2.25s;
}

@keyframes coinFloat {
    0% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-15px) translateZ(0);
    }
    100% {
        transform: translateY(0) translateZ(0);
    }
}