body {
    background: #fcf0c2;
}

.card {
    --bs-card-spacer-y: 0;
    --bs-card-spacer-x: 0;
    background: transparent;
    border: 0px solid transparent !important;
    box-shadow: 0 0 0 transparent;
    position: relative;
}
.card .top {
    position: relative;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}
.advantages-list .badge {
    border-radius: 1000px;
    margin-right: 5px !important;
    display: inline-block;
    --bs-badge-font-size: 0.5em;
    transform: translateY(-3px);
}
.advantages-list .badge-1 {
    background: #f59700;
}
.advantages-list .badge-2 {
    background: #5838f5;
}
.advantages-list .badge-3 {
    background: #b20bdf;
}
.advantages-list .badge-4 {
    background: #ff4c2d;
}
.card a.btn {
    border-radius: 1000px;
    font-weight: bold;
    background-image: linear-gradient(to right, #F5BC00, #F5BC00);
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 0;
    box-shadow: 0 0 0 0 rgba(245, 188, 0, 0.5);
}
.card a.btn:hover {
    box-shadow: 0 0 2px 4px rgba(245, 188, 0, 0.5);
}
.card .badge {
    font-size: 1.2rem;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .badge-verified {
    position: absolute;
    left: 10px;
    top: 10px;
    border: 1px solid var(--bs-primary) !important;
    border-radius: 1000px !important;
    background: #fff !important;
    color: var(--bs-primary);
}
.card .badge-online {
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid var(--bs-success) !important;
    border-radius: 1000px !important;
    background: #fff !important;
    color: var(--bs-success);
}
.card .card-name {
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 0.35rem;
    color: #fff;
    padding: 5px;
}

#profileGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.row>* {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.card .card-img-top {
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bs-success); 
    margin-right: 6px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.badge-real-only {
    color: #f59700;
    border: 1px solid #f59700;
    border-radius: 1000px;
}


.btn-all {
    position: sticky;
    bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}
.btn-all .btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    border-radius: 1000px;
    font-weight: bold;
    background-image: linear-gradient(to right, #F5BC00, #f59700);
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    border: 0;
    box-shadow: 0 0 0 0 rgba(245, 188, 0, 0.5);
}
.btn-all .btn:hover {
    box-shadow: 0 0 2px 4px rgba(245, 188, 0, 0.5);
}

.main-title {
    font-size: 3.5rem;
}



@media screen  and (max-width: 991px){

.lead {
    font-size: calc(1rem - 2px);
}
    
#profileGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.card a.btn {
    min-height: 40px;
    font-size: 1rem;
}

.card .top {
    margin-bottom: 0.5rem;
}

.card .badge {
    font-size: 0.7rem;
    height: 21px;
}

.card .card-name {
    padding: 3px 5px;
    font-size: 1rem;
    left: 7px;
    bottom: 7px;
}
.card .badge-verified {
    left: 7px;
    top: 7px;
}
.card .badge-online {
    right: 7px;
    top: 7px;
}

.online-indicator {
  width: 7px;
  height: 7px;
  margin-right: 4px;
}

.btn-all .btn {
    max-width: 300px;
    min-height: 58px;
    font-size: 1.5rem;
}

.advantages-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.35rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.advantages-list ul li {
    text-align: left;
    margin-right: 0 !important;
}

.main-title {
    font-size: 2.3rem;
}


}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1020px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 960px;
    }
}

.footer-link a {
    text-decoration: none;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

@media screen and (max-width: 767px){
    .logo img {
        max-width: 240px;
    }
}


