/* ============================================
   EXTERNAL MESSAGES STYLES
   ============================================ */

/* Message View Container */
.message-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.message-content {
    max-width: 1200px;
    width: 90%;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.message-title {
    font-size: 4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.message-text {
    font-size: 3rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 3rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-weight: bold;
}

.message-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.message-counter {
    font-size: 2rem;
    font-weight: bold;
    color: #7f8c8d;
}

.message-hint {
    font-size: 1.8rem;
    color: #95a5a6;
    font-style: italic;
    font-weight: bold;
}

/* Message Notification Button (rechtsonder, knipperend) */
.message-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    cursor: pointer;
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

.message-notification-icon {
    font-size: 10.5rem;
    animation: bounce 1s ease-in-out infinite;
}

/* Pulse animatie voor notificatie */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.8);
    }
}

/* Bounce animatie voor icoon */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Responsive aanpassingen */
@media (max-width: 1200px) {
    .message-title {
        font-size: 3rem;
    }
    
    .message-text {
        font-size: 2.5rem;
    }
    
    .message-counter {
        font-size: 1.8rem;
    }
    
    .message-hint {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .message-content {
        padding: 2rem;
    }
    
    .message-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .message-text {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .message-notification {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
    
    .message-notification-icon {
        font-size: 2.5rem;
    }
}
