/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Ponomar:wght@400;700&family=Allison&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ponomar', sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: white;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    margin-bottom: 50px;
}

.logo-text {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

.club-text {
    font-family: 'Allison', cursive;
    font-size: 5rem;
    position: absolute;
    right: -12px;
    bottom: -40px;
}

.stars {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
}

.star {
    position: absolute;
    color: white;
    font-size: 24px;
}

.star:nth-child(1) {
    transform: translateX(-80px) translateY(10px);
}

.star:nth-child(2) {
    transform: translateX(-40px) translateY(-10px);
}

.star:nth-child(3) {
    transform: translateX(0) translateY(-20px);
}

.star:nth-child(4) {
    transform: translateX(40px) translateY(-10px);
}

.star:nth-child(5) {
    transform: translateX(80px) translateY(10px);
}

.heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.subheading {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.progress-container {
    width: 350px;
    margin: 0 auto;
}

.progress-bar {
    height: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress {
    width: 63%;
    height: 100%;
    background: linear-gradient(90deg, #ff5e62, #ff9966);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.progress-text {
    text-align: center;
    margin-top: 8px;
    font-size: 1.4rem;
}


/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hand holding phones */
.hand-left {
    position: absolute;
    bottom: -100px;
    left: 80px;
    width: 250px;
    height: 300px;
    z-index: 0;
}

.hand-right {
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 250px;
    height: 300px;
    transform: scaleX(-1);
    z-index: 0;
}