/* Cozy Wheel - MOBILE CENTERED */
.cozy-wheel {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 10px #888888;
}

.cozy-video {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid gray !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.cozy-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cozy-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.cozy-label {
    position: absolute;
    background: #cadcae;
    opacity: 0.9;
    color: black;
    padding: 10px 12px;
    border-radius: 1px;
    cursor: pointer;
    text-align: center;
    min-width: 90px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: normal;
    pointer-events: auto;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: none;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease;
}

.cozy-label:hover {
    background: #66c471;
    transform: translate(-50%, -50%) scale(1.1);
}

.cozy-label.active {
    background: #66c471;
    color: black;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    z-index: 5;
}

/* Mobile Responsive - CENTERED */
@media (max-width: 768px) {
    .cozy-wheel {
        width: 100vw !important; /* Full viewport width */
        height: 100vw !important;
        max-width: 400px;
        max-height: 400px;
        margin: 20px 0 !important; /* Remove auto margin */
        left: 50% !important; /* Center with transform */
        transform: translateX(-50%) !important; /* Center horizontally */
        position: relative !important;
    }
    
    .cozy-video {
        width: 60vw !important;
        height: 60vw !important;
        max-width: 220px;
        max-height: 220px;
    }
    
    .cozy-labels {
        width: 100vw !important;
        height: 100vw !important;
        max-width: 400px;
        max-height: 400px;
        left: 0 !important;
    }
    
    .cozy-label {
        padding: 8px 10px !important;
        min-width: 75px !important;
        font-size: 12px !important;
    }
}

/* Extra small devices - EXTRA CENTERING */
@media (max-width: 480px) {
    .cozy-wheel {
        max-width: 350px;
        max-height: 350px;
    }
    
    .cozy-video {
        max-width: 200px;
        max-height: 200px;
    }
    
    .cozy-label {
        padding: 6px 8px !important;
        min-width: 65px !important;
        font-size: 11px !important;
    }
}

/* Ensure body doesn't cause centering issues */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Center the wheel container absolutely */
@media (max-width: 768px) {
    body .cozy-wheel {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}