/**
 * Alexa Skill Overlay Styles
 */

/* Modal Overlay */
.alexa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    font-family: "Rubik", Sans-serif;
}

.alexa-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.alexa-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(49, 196, 243, 0.4);
    border: 1px solid rgba(49, 196, 243, 0.3);
    animation: slideIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}

.alexa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.alexa-close:hover {
    background: rgba(49, 196, 243, 0.2);
    color: #31C4F3;
    transform: rotate(90deg);
}

.alexa-header {
    margin-bottom: 30px;
}

.alexa-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #31C4F3;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alexa-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.alexa-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #31C4F3 0%, #1E88B8 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 196, 243, 0.4);
}

.alexa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(49, 196, 243, 0.6);
    background: linear-gradient(135deg, #42d4ff 0%, #2698c8 100%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Anpassungen */
@media (max-width: 767px) {
    .alexa-container {
        padding: 40px 25px;
    }
    
    .alexa-header h1 {
        font-size: 24px;
    }
    
    .alexa-content p {
        font-size: 16px;
    }
    
    .alexa-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
