/* 
   FSVR - Farming Simulator 25 VR Mod
   VR Icons Styles
*/

/* ===== VR Headset Icons ===== */
.vr-headset-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.vr-headset-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Specific styles for each VR headset */
.compatibility-card:nth-child(1) .vr-headset-icon {
    background: linear-gradient(135deg, #1877F2, #0A3D7F); /* Meta/Oculus blue */
}

.compatibility-card:nth-child(2) .vr-headset-icon {
    background: linear-gradient(135deg, #171A21, #2A475E); /* Steam/Valve dark blue */
}

.compatibility-card:nth-child(3) .vr-headset-icon {
    background: linear-gradient(135deg, #0099E5, #00618A); /* HTC blue */
}

.compatibility-card:nth-child(4) .vr-headset-icon {
    background: linear-gradient(135deg, #00A4EF, #0078D7); /* Windows blue */
}

/* Animation for icons */
.vr-headset-icon i {
    transition: all 0.3s ease;
}

.vr-headset-icon:hover i {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .vr-headset-icon {
        width: 100px;
        height: 100px;
    }
    
    .vr-headset-icon i {
        font-size: 3em !important;
    }
}

@media screen and (max-width: 480px) {
    .vr-headset-icon {
        width: 80px;
        height: 80px;
    }
    
    .vr-headset-icon i {
        font-size: 2.5em !important;
    }
}
