<<<<<<< HEAD
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#coin {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    perspective: 1000px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.side {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.heads {
    background: radial-gradient(circle at 35% 35%, #fceabb, #f8b500);
    color: #333;
}

.tails {
    /* Adjust as needed depending on the initial appearance */
    background: radial-gradient(circle at 65% 65%, #c5c6c7, #636466);
    color: #fff;
    transform: rotateX(180deg); /* Ensure it matches the keyframe logic */
}

.flip {
    animation: flip 3s linear infinite; /* Using 'infinite' for continuous looping until stopped */
}

@keyframes flip {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(3600deg);  /* Fast continuous flip */
    }
}

@keyframes verticalMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px); /* Adjust as needed for visible effect */
    }
}

@keyframes continuousFlip {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(3600deg);
    }
}

@keyframes decelerateFlip {
    0% {
        transform: rotateX(var(--rotation-start));
    }
    100% {
        transform: rotateX(var(--rotation-end));
    }
}

.flip-continuous {
    animation: continuousFlip 3s linear infinite;
}

.flip-decelerate {
    animation: decelerateFlip 2s cubic-bezier(0.32, 0.64, 0.45, 1) forwards;
}

#status {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.dot {
    opacity: 0;
    animation: dotAppear 1.5s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dotAppear {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

button {
    background: linear-gradient(to bottom, #fceabb, #f8b500);
    color: #333;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

button:disabled {
    background: #ccc;
    color: #666;
    cursor: default;
    box-shadow: none;
}
button:disabled:hover {
    transform: none;
    box-shadow: none;
=======
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#coin {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    perspective: 1000px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.side {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.heads {
    background: radial-gradient(circle at 35% 35%, #fceabb, #f8b500);
    color: #333;
}

.tails {
    /* Adjust as needed depending on the initial appearance */
    background: radial-gradient(circle at 65% 65%, #c5c6c7, #636466);
    color: #fff;
    transform: rotateX(180deg); /* Ensure it matches the keyframe logic */
}

.flip {
    animation: flip 3s linear infinite; /* Using 'infinite' for continuous looping until stopped */
}

@keyframes flip {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(3600deg);  /* Fast continuous flip */
    }
}

@keyframes verticalMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px); /* Adjust as needed for visible effect */
    }
}

@keyframes continuousFlip {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(3600deg);
    }
}

@keyframes decelerateFlip {
    0% {
        transform: rotateX(var(--rotation-start));
    }
    100% {
        transform: rotateX(var(--rotation-end));
    }
}

.flip-continuous {
    animation: continuousFlip 3s linear infinite;
}

.flip-decelerate {
    animation: decelerateFlip 2s cubic-bezier(0.32, 0.64, 0.45, 1) forwards;
}

#status {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.dot {
    opacity: 0;
    animation: dotAppear 1.5s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dotAppear {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

button {
    background: linear-gradient(to bottom, #fceabb, #f8b500);
    color: #333;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

button:disabled {
    background: #ccc;
    color: #666;
    cursor: default;
    box-shadow: none;
}
button:disabled:hover {
    transform: none;
    box-shadow: none;
>>>>>>> e99701c (First comimit)
}