/* PlayStation Console Icons - CSS Only */
.ps-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(255,0,212,0.1) 100%);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.ps-icon:hover {
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(255,0,212,0.2) 100%);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Console shapes */
.ps-icon::before {
    content: '';
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ps-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg, #00d4ff 0%, #ff00d4 100%);
    border-radius: 4px;
    bottom: 60px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Model specific styles */
.ps-icon.ps5::before {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 15px 15px 8px 8px;
    height: 70px;
}

.ps-icon.ps5::after {
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    height: 6px;
    bottom: 55px;
}

.ps-icon.ps5-digital::before {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 20px;
    height: 65px;
    width: 100px;
}

.ps-icon.ps5-digital::after {
    background: linear-gradient(90deg, #00d4ff 0%, #ff00d4 100%);
    height: 4px;
    bottom: 60px;
}

.ps-icon.ps4::before {
    background: linear-gradient(135deg, #1a1a2e 0%, #000000 100%);
    border-radius: 6px;
    height: 55px;
    width: 110px;
}

.ps-icon.ps4::after {
    background: linear-gradient(90deg, #ff00d4 0%, #ff6b6b 100%);
    height: 4px;
    bottom: 65px;
}

.ps-icon.ps4-pro::before {
    background: linear-gradient(135deg, #1a1a2e 0%, #000000 100%);
    border-radius: 6px;
    height: 65px;
    width: 130px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.ps-icon.ps4-pro::after {
    background: linear-gradient(90deg, #ff00d4 0%, #00d4ff 100%);
    height: 6px;
    bottom: 55px;
    width: 100px;
}

/* Console text labels */
.ps-icon .console-label {
    position: absolute;
    bottom: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Loading animation */
.ps-icon.loading::before {
    animation: consolePulse 1.5s ease-in-out infinite;
}

@keyframes consolePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .ps-icon {
        height: 150px;
    }
    
    .ps-icon::before {
        width: 90px;
        height: 45px;
    }
    
    .ps-icon::after {
        width: 60px;
        height: 4px;
        bottom: 45px;
    }
}
