/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.login-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-content {
    background: white;
    padding: 50px 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: scale(0.8);
    transition: transform 0.3s;
    max-width: 450px;
    min-height: auto;
}

.login-modal.active .login-modal-content {
    transform: scale(1);
}

.login-modal h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.login-modal p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.login-modal-emoji {
    font-size: 64px;
    margin-bottom: 20px;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 15px;
}

.google-login-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.google-login-btn img {
    width: 24px;
    height: 24px;
}

.login-modal-close {
    margin-top: 20px;
    padding: 12px 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.login-modal-close:hover {
    background: #e0e0e0;
}
