/* Phone-specific styles */

/* Phone Showcase Styles - 1:1 wie Tablet */
.phone-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.phone-showcase:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.phone-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Phone-specific adjustments to existing styles */
.product-title {
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tag {
    background: rgba(100, 181, 246, 0.2);
    color: #64b5f6;
    border: 1px solid rgba(100, 181, 246, 0.3);
}

.tag:hover {
    background: rgba(100, 181, 246, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    box-shadow: 0 8px 24px rgba(100, 181, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
    box-shadow: 0 12px 32px rgba(100, 181, 246, 0.4);
}

.installation-icon {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    box-shadow: 0 8px 24px rgba(100, 181, 246, 0.3);
}

.btn-installation {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    box-shadow: 0 4px 16px rgba(100, 181, 246, 0.3);
}

.btn-installation:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    box-shadow: 0 8px 24px rgba(100, 181, 246, 0.4);
}

/* Phone Preview Styles */
.phone-preview {
    width: 400px;
    height: 800px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 40px;
    border: 8px solid #2c2c54;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    margin: 0 auto;
}

.phone-preview::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: #2c2c54;
    border-radius: 3px;
}

.phone-screen {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
    .phone-showcase {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .phone-showcase:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    }
    
    .phone-image {
        max-height: 400px;
    }
    
    .phone-preview {
        transform: scale(0.7);
        margin: -50px auto;
    }
}

@media (max-width: 480px) {
    .phone-image {
        max-height: 300px;
    }
    
    .phone-preview {
        transform: scale(0.5);
        margin: -100px auto;
    }
    
    .apps-embed-frame-wrapper {
        height: 500px !important;
    }
}

/* Phone-specific app card enhancements */
.app-card:hover {
    border-color: rgba(100, 181, 246, 0.3);
}

/* Brand name with phone accent */
.brand-name h2 {
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Apps title with phone accent */
.apps-title {
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background effects specific to phone */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 165, 245, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}