.center-container {
    display: flex;
    flex-direction: column;  
    justify-content: center; 
    align-items: center;
    margin-bottom:8px; 
}

.mybtn {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffdd3a;
    color: #1d3a50;
    padding: 10px 18px;
    border-radius: 5px;
    min-width:230px;
    display: inline-block;
    text-align: center;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    text-transform: uppercase;
    text-shadow: 0 3px 4px #000000
}

.mybtn.mybtn-dark {
    background-image: linear-gradient(90deg, #e91e63, #e91e63);
    color: #fff;
    box-shadow: rgb(0 0 0 / 20%) 0 25px 20px -20px
}

.mybtn:visited,
.mybtn:hover,
.mybtn:active,
.mybtn:focus {
    color: #fff
}

.mybtn i {
    color: #fff;
    float: right;
    position: absolute;
    right: 5px;
    top: 17px
}

.ariglow {
    border: none;
    outline: 0;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    background: none;
}

.ariglow:after,
.ariglow:before {
    z-index: -1;
    position: absolute;
    border-radius: 10px
}

.ariglow.hasGlow:before {
    content: "\ea44";
    background: linear-gradient(45deg, red, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, red);
    top: -2px;
    left: -2px;
    background-size: 400%;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: 20s linear infinite glowing;
    opacity: 1;
    transition: opacity .3s ease-in-out
}
.ariglow:after {
    content: '';
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    top: 0;
}

@keyframes glowing {
    0%,
    100% {
        background-position: 0 0
    }
    50% {
        background-position: 400% 0
    }
}

.hasGlow {
    animation: 20s linear infinite glowing;
}

.hasBgBlue {
    background: #1e90ff;
}

.hasBgRed {
    background: #e63946;
    color: #fff;
}

.hasBgGreen {
    background: #06823a;
}

.hasBgPurple {
    background: #8e44ad;
    color: #fff;
}

.hasBgBlack {
    background: #eead0e;
    color: #fff;
}

.hasBgOrange {
    background: #eead0e;
    color: #fff;
}

.aribonus {
    display: inline-block;
    padding-left:3px;
    animation: analist 1s ease 0s infinite normal forwards;
}

@keyframes analist {
    0% {
        transform: translateY(0) scale(1); /* Başlangıç pozisyonu */
    }

    50% {
        transform: translateY(-5px) scale(1.1); /* Yükselirken büyüsün */
    }

    100% {
        transform: translateY(0) scale(1); /* Geri yerine dönsün */
    }
}

.cntn-wrp p:has(a.mybtn) {
    margin: 0 0 10px 0;
}

.cntn-wrp a.mybtn {
    margin: 0 0 10px 0;
}