/* styles.css */
body {
    background-color: #f0f0f0;
    font-family: 'Open Sans', sans-serif;
}

.card {
    margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Perfect alignment for all card titles (icon + text) */
.card-title {
    display: flex !important;
    align-items: center !important;
    font-weight: bold;
    color: #333;
}

.card-title i.material-icons {
    margin-right: 10px;
    font-size: 1.8rem;
    line-height: 1;
}

.step {
    margin-bottom: 20px;
}

.progress {
    margin-top: 10px;
}

.btn-flat {
    margin-left: 10px;
}

.modal-content {
    padding: 20px;
    border-radius: 8px;
}

.modal-content h5 {
    font-size: 1.5rem;
    font-weight: bold;
}

#hintMessage {
    text-align: center;
    font-weight: 400;
    white-space: pre-line; /* Preserves line breaks in hint */
}

/* Simple slide-fade animations */
#intro {
    animation: fadeIn 0.8s ease-out;
}

#verification-container {
    animation: slideInFromRight 0.7s ease-out forwards;
}

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

@keyframes slideInFromRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Messenger-style secret message */
#message {
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out;
}

.messenger-bubble {
    max-width: 100%;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sender-name {
    margin-left: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Text message bubble */
.message-text {
    background-color: #e3f2fd;
    padding: 14px 18px;
    border-radius: 18px;
    display: inline-block;
    max-width: 380px;
    width: auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #1c1e21;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-left: 62px;
    margin-bottom: 12px;
    word-wrap: break-word;
}

/* GIF bubbles */
.sticker-bubble {
    margin-left: 62px;
    margin-bottom: 12px;
    padding: 8px;
    background-color: #e3f2fd;
    border-radius: 18px;
    display: inline-block;
    max-width: 380px;
    width: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sticker-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    border-radius: 12px;
}