/* Freespin container styling */
.freespin {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}

.freespin img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.freespin-item {
    background: #0f1721b3;
    border: 1px solid #6487c8;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    color: white;
    text-align: center;
}

.freespin-item h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.freespin-item .free-spin {
    color: #3ba2da;
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    background: #1a2f3a;
    border-radius: 25px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #305eb0;
    transition: width 0.3s ease;
    z-index: 1;
    border-radius: 25px;
}

.progress-text {
    position: relative;
    z-index: 2;
    color: #305569;
    font-weight: bold;
    text-align: center;
    background: none;
    right: 0;
    position: absolute;
    width: 50%;
}

.completed {
    background: #0f1721a8;
    color: #4CAF50;
}

.claim-btn {
    background: linear-gradient(to bottom, #3ca5dd 0%, #091e58 100%);
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 800;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.claim-btn:hover {
    background: linear-gradient(to bottom, #4db8f0 0%, #0c2a7a 100%);
    color: #f0f0f0;
    box-shadow: 0 0 10px rgba(60, 165, 221, 0.5);
}
.completed .progress-text{
    width: 100%;
    color: #fff;
}
.freespin-container .mission-info{
    display: block;
}
.freespin-container .mission-time{
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}