body {
    background: linear-gradient(135deg, #f3f4f6, #e9ecef);
    font-family: 'Arial', sans-serif;
}

.container {
    min-height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #fbd928;
    overflow: hidden;
}

.background span {
    width: 5vmin;
    height: 5vmin;
    border-radius: 5vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move infinite linear;
}

.card {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
    text-align: center;
    width: 100%;
    max-width: 500px;
    background: white;
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
    flex-direction: column;
    height: 100%;
    display: flex;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #343a40;
    font-weight: bold;
}

.card-text {
    font-size: 0.8rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
    text-align: center;
}

.card-text:nth-child(1) {
    animation-delay: 0.2s;
}

.card-text:nth-child(2) {
    animation-delay: 0.4s;
}

.card-text:nth-child(3) {
    animation-delay: 0.6s;
}

.profile-img {
    width: 120px;
    height: 120px;
    border: 4px solid white;
    margin-top: -60px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 0.9rem;
}

.btn-app-store,
.btn-play-store {
    width: 100%;
    max-width: 220px;
    margin: 0.5rem auto;
    font-size: 0.95rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-app-store:hover {
    background-color: #333333;
    transform: scale(1.05);
}

.btn-play-store:hover {
    background-color: #28a745;
    transform: scale(1.05);
}

.icon-buttons a,
.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 10px;
    color: #6c757d;
    transition: color 0.3s, transform 0.3s;
}

.icon-buttons a:hover,
.social-icons a:hover {
    color: #007bff;
    transform: scale(1.1);
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.logo:hover {
    border-color: #59a2d2;
}

.logo.selected {
    border-color: #0099ff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.icon-spacing {
    margin-right: 15px; /* Adjust the value as needed */
}

.profile-img {
    border-radius: 50%; /* Make it circular */
    transition: border 0.3s ease; /* Smooth transition */
}

.active-logo {
    border: 5px solid #C13584; /* Circle color for selected logo */
    background-color: rgba(195, 53, 132, 0.1); /* Optional: background color */
}

